Frage

I have a for loop that runs over a JSON object and returns the properties in the console. What I am trying to do is return also the value of that property in the console.

This is the code

   for (var i in response) {
       console.log(i); //return the property to the console
    }

How can I get the value of response.i and not just the name of the property?

War es hilfreich?

Lösung

Try the following :

console.log(response[i]); 

You are iterating throw the object, but i is number of the property in the collection, not the property value.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top