欢迎光临
我们一直在努力

Javascript 中使用 const 与 freeze 的声明

javascript 中使用 const 与 freeze 的声明

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"
}
赞(0) 打赏
未经允许不得转载:码农资源网 » Javascript 中使用 const 与 freeze 的声明
分享到

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续提供更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫打赏

微信扫一扫打赏

登录

找回密码

注册