使用 const 我们仍然可以修改 Javascript 对象的内容,但对该对象的引用将是不可变的。
const product = {name: "Sugar", weight: "1 kg"}; product.name = "Some New Name"; console.log(product);
{ name: "Some New Name", weight: "1 kg" }
在我们不想修改对象内容的情况下,首选使用冻结。
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 的声明的详细内容。更多信息请关注PHP中文网其他相关文章!