2014-09-15 5 views

ответ

1
for(var property in object){ 
if(object.hasOwnProperty(property)){//prevents from getting inherent properties 
    console.log(object[property]) 
} 
} 
+0

Спасибо так много, –

Смежные вопросы