Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I have data which looks something like this:

x = {"key1":"val1", "key2":"val2", "key3", "val3"};

Is there any standard way to do a for each over them with a function that returns the key, value and index?

The way I would do it is define an array of keys and use the index to access it, but is there a simpler way?

something like:

$.each(x, function(i, k, v) {
    //... do something here
}
share|improve this question
1  
Just plain old for() and manual counter? – zerkms Mar 10 at 21:10
3  
Objects' keys are unordered in nature. Most browsers will iterate them in the order the properties were added, but they are not warranted to. – Fabrício Matté Mar 10 at 21:12

2 Answers

up vote 1 down vote accepted

Object.keys()link along with Array.prototype.forEachlink:

Synopsis

Object.keys( object ).forEach(function( element, index, array ) {
});

Object.keys() returns all own keys as Array and .forEach() loops over an array like shown above. Since we get an Array from Object.keys(), we can of course also apply Array.prototype.sort() on it, and access the keys in any order we like. For instance

Object.keys( object ).sort(function( a, b ) {
    return a.localeCompare( b );
}).forEach(function( element, index, array ) {
    console.log( object[ element ] );
});
share|improve this answer
sneaky arent we? :P – Dogoku Mar 10 at 21:13
Clear and concise! thanks! – by0 Mar 10 at 21:42

you can create your own "index" if you will

var i =0;
$.each(...... {
    /* code */
    i++;
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.