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


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


Object.getOwnPropertyNames() 方法返回直接在給定對象上找到的所有屬性(使用符號的不可枚舉屬性除外)的數組。

用法:

Object.getOwnPropertyNames(obj)

參數:

obj: 它是要返回其可枚舉和不可枚舉的自身屬性的對象。

返回值:

此方法返回與直接在對象上找到的屬性相對應的字符串數組。

瀏覽器支持:

Chrome 5
Edge Yes
Firefox 4
Opera 12

例子1

const object1 = {
  a:0,
  b:1,
  c:2,
};
console.log(Object.getOwnPropertyNames(object1));

輸出:

["a", "b", "c"]

例子2

var obj = { 0:'a', 1:'b', 2:'c' };
console.log(Object.getOwnPropertyNames(obj).sort()); // logs '0,1,2'

// Logging property names and values using Array.forEach

Object.getOwnPropertyNames(obj).forEach(function(val, idx, array) {
  console.log(val + ' -> ' + obj[val]);

});

輸出:

["0", "1", "2"]
 "0 -> a"
 "1 -> b"
 "2 -> c"    

例子3

function Pasta(grain, size, shape) {
    this.grain = grain; 
    this.size = size; 
    this.shape = shape; 
}
var spaghetti = new Pasta("wheat", 2, "circle");
var names = Object.getOwnPropertyNames(spaghetti).filter(CheckKey);
document.write(names); 
 // Check whether the first character of a string is 's'. 
function CheckKey(value) {
    var firstChar = value.substr(0, 1); 
    if (firstChar.toLowerCase() == 's')
        return true; 
    else
         return false; }

輸出:

size,shape






相關用法


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