使用 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中文網其他相關文章!