Web/04-JavaScript基础/31-对象的高级操作(待更新).md
qianguyihao 4b3f7bade5 rename
2022-10-09 15:12:20 +08:00

33 lines
858 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 31_1-对象的高级操作(待更新)
publish: false
---
<ArticleTopAd></ArticleTopAd>
## Object.freeze() 冻结对象
Object.freeze() 方法可以冻结一个对象。一个被冻结的对象再也不能被修改冻结了一个对象则不能向这个对象添加新的属性不能删除已有属性不能修改该对象已有属性的可枚举性、可配置性、可写性以及不能修改已有属性的值。此外冻结一个对象后该对象的原型也不能被修改。freeze() 返回和传入的参数相同的对象。
代码举例:
```js
const params = {
name: 'qianguyihao';
port: '8899';
}
Object.freeze(params); // 冻结对象 params
params.port = '8080';// 修改无效
```
上方代码中,把 params 对象冻结后,如果想再改变 params 里面的属性值,是无效的。