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
}


for()and manual counter? – zerkms Mar 10 at 21:10