我们知道我们可以保护变量的值,所以用户不能改变现有变量的值!!实现这对对象没有任何问题..??
例如..
const x = 5;
x = 10;
alert(x)
// will be returned 5
使用对象..
const obj = {
init: function() {
obj.show()
},
show: function() {
//..
},
hide: function() {
//..
}
}
obj.init();