Сообщение от platedz
|
а мне нужно получить только
a: a
b: b
Как этого добиться?
|
Object.prototype.forin = function(){var result = ""; for(i in this) {if (!this.hasOwnProperty(i)) continue;result += i + ": "+this[i] +"\n"} return result;}
var ob = {a:"a",b:"b"}
alert(ob.forin());