当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Object.seal()用法及代码示例


JavaScript 的 Object.seal() 方法密封一个对象,防止向其添加新属性,并将所有现有属性标记为不可配置。要密封的对象作为参数传递,该方法返回已密封的对象。

用法:

Object.seal(obj)

参数:

obj: 这是应该密封的对象。

返回值:

Object.sealed() 方法返回已密封的对象。

浏览器支持:

Chrome 6
Edge Yes
Firefox 4
Opera 12

例子1

const obj1 = { property1:'Marry'};
        const obj2 = Object.seal(obj1);
       // prevents other code from deleting properties of an object.
        obj2.property1 = 'carry';
        console.log(obj2.property1);

输出:

"carry"

例子2

const object1 = {
  property1:29
};
Object.seal(object1);
// Prevents other code from deleting properties of an object.
object1.property1 =45;
console.log(object1.property1);
delete object1.property1;
   // cannot delete when sealed

输出:

 45

例子3

const object1 = {
  property1:42
};
Object.seal(object1);
object1.property1 = 45;
console.log(object1.property1);

delete object1.property1; // cannot delete when sealed
console.log(object1.property1);

const object2 = {
  property2:45};
object2.property2 =67;
console.log(object2.property2);

输出:

45
45
67






相关用法


注:本文由纯净天空筛选整理自 JavaScript Object.seal() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。