I have result array of objects with such structure: 
 And I'm trying to retrieve "login" field iterating this result. 
I do next:
And I'm trying to retrieve "login" field iterating this result. 
I do next: 
for(key in result) {
     console.log(key);
}
and it prints only object indexes: 0, 1, 2... How can I retrieve object fields? I'm new in JS.
