JavaScript ES6 类中的私有属性
2022-08-29 23:03:05
是否可以在 ES6 类中创建私有属性?
下面是一个示例。如何阻止访问 ?instance.property
class Something {
constructor(){
this.property = "test";
}
}
var instance = new Something();
console.log(instance.property); //=> "test"