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


JavaScript Object getOwnPropertyDescriptor()用法及代码示例


JavaScript Object.getOwnPropertyDescriptor() 方法返回对象自身属性的属性说明符。

用法:

Object.getOwnPropertyDescriptor(obj, prop)

getOwnPropertyDescriptor() 方法是静态方法,使用Object 类名调用。

参数:

getOwnPropertyDescriptor() 方法包含:

  • obj - 要在其中查找属性的对象。
  • prop - 要检索其说明的属性的名称或 Symbol

返回:

  • 返回对象上给定属性的属性说明符。
  • 如果该属性在对象上不存在,则返回 undefined

示例:使用 getOwnPropertyDescriptor()

let obj = {
  x: 10,
  get number() {
    return this.x;
  },
};

let xValue = Object.getOwnPropertyDescriptor(obj, "x");
console.log(xValue);

let value = Object.getOwnPropertyDescriptor(obj, "number");
console.log(value);

Object.defineProperty(obj, "name", {
  value: "JavaScript",
  writable: false,
  enumerable: false,
});

console.log(Object.getOwnPropertyDescriptor(obj, "name"));

输出

{ value: 10, writable: true, enumerable: true, configurable: true }
{
  get: [Function: get number],
  set: undefined,
  enumerable: true,
  configurable: true
}
{
  value: 'JavaScript',
  writable: false,
  enumerable: false,
  configurable: false
}

相关用法


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