欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

获得Javascript对象属性个数的示例代码_javascript技巧

程序员文章站 2022-05-04 16:48:11
...
如下所示:
复制代码 代码如下:

//扩展对象的count方法
Object.prototype.count = (
Object.prototype.hasOwnProperty(‘__count__')
) ? function () {
return this.__count__;
} : function () {
var count = 0;
for (var i in this) if (this.hasOwnProperty(i)) {
count ++;
}
return count;
};

//使用
var myObj = {
name1: “value1″,
name2: “value2″
};

alert(myObj.count());