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


JavaScript Object getOwnPropertyNames()用法及代碼示例


JavaScript Object.getOwnPropertyNames() 方法返回在給定對象中找到的所有屬性的數組。

用法:

Object.getOwnPropertyNames(obj)

getOwnPropertyNames() 方法是靜態方法,使用Object 類名調用。

參數:

getOwnPropertyNames() 方法包含:

  • obj - 要返回其可枚舉和不可枚舉屬性的對象。

返回:

  • 返回與直接在給定對象中找到的屬性相對應的字符串數組。

注意: Object.getOwnPropertyNames()返回對象的所有自己的屬性,而Object.keys()返回所有可枚舉的自己的屬性。

示例:使用 getOwnPropertyNames()

// array object
let arr = ["a", "b", "c"];
console.log(Object.getOwnPropertyNames(arr)); // [ '0', '1', '2', 'length' ]

// array-like objects
let obj = { 65: "A", 66: "B", 67: "C" };
console.log(Object.getOwnPropertyNames(obj)); // [ '65', '66', '67' ]

// non-enumerable properties are also returned
let obj1 = Object.create(
  {},
  {
    getValue: {
      value: function () {
        return this.value;
      },
      enumerable: false,
    },
  }
);
obj1.value = 45;

console.log(Object.getOwnPropertyNames(obj1)); // [ 'getValue', 'value' ]

輸出

[ '0', '1', '2', 'length' ]
[ '65', '66', '67' ]
[ 'getValue', 'value' ]

相關用法


注:本文由純淨天空篩選整理自 JavaScript Object getOwnPropertyNames()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。