當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。