gpt4 book ai didi

JavaScript 常量

转载 作者:行者123 更新时间:2023-11-28 13:47:36 28 4
gpt4 key购买 nike

我们知道我们可以保护变量的值,因此用户无法更改现有变量的值!这对对象来说没有什么问题吗??

例如..

const x = 5;

x = 10;

alert(x)
// will be returned 5

使用对象..

 const obj = {
init: function() {
obj.show()
},
show: function() {
//..
},
hide: function() {
//..
}
}
obj.init();

最佳答案

如果你可以不用使用 JS5,你有这个选择:

var CONST = {
NAME: "The Cool Gizmo",
VERSION: 2
};
Object.freeze(CONST);

alert(CONST.NAME);

关于JavaScript 常量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13106371/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com