아래와 같이
//카운트 확장 객체의 메소드
Object.prototype.count = (
Object.prototype.hasOwnProperty('__count__')
) ? function () {
return this.__count__;
} : 함수 () {
var count = 0;
for (var i in this) if (this.hasOwnProperty(i)) {
count ;
}
return count;
} ;
//
var myObj = {
name1: “value1″,
name2: “value2″
};
alert(myObj.count 사용) ());