javascript 常量
使用 const 我们仍然可以修改 javascript 对象的内容,但对该对象的引用将是不可变的。
const product = {name: "sugar", weight: "1 kg"}; product.name = "some new name"; console.log(product);
登录后复制
{ name: "some new name", weight: "1 kg" }
登录后复制
javascript 冻结
当我们不想修改对象的内容时,首选使用 freeze。
const product = {name: "sugar", weight: "1 kg"}; object.freeze(product); product.name = "some new name"; console.log(product);
登录后复制
{ name: "Sugar", weight: "1 kg" }
登录后复制
以上就是Javascript 中使用 const 与 freeze 的声明的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:城南北边,转转请注明出处:https://www.dingdanghao.com/article/711745.html