Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Iterate over Object Literal Values

i have object in JavaScript:

var object = someobject;

Object { aaa=true, bbb=true, ccc=true }

How can i use each for this?

 object.each(function(index, value)){
      console.log(value);
 }

not working.

share|improve this question
Are you using jQuery? What result do you expect? Three 'true' in console? – davids Aug 7 '12 at 12:56
jQuery's documentation of $.each (api.jquery.com/jQuery.each) has a perfect example -- see 2nd code block on the page. Uses alert() instead of console.log(). – Faust Aug 7 '12 at 13:00
both code snippets you posted are not valid javascript. – jbabey Aug 7 '12 at 13:00

marked as duplicate by casperOne Aug 8 '12 at 13:08

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 4 down vote accepted

Object does not have a standard .each function. jQuery provides a function. See http://api.jquery.com/jQuery.each/ The below should work

$.each(object, function(index, value) {
    console.log(value);
}); 

Edit: an easier option is to use the simple

for(index in object) { var attr = object[index]; }
share|improve this answer
The "easier option" was not provided by you, just saying – Alexander Aug 7 '12 at 13:00
True, I edited it in later on. Edited to make that clear. – Willem Mulder Aug 7 '12 at 13:33
for(var key in object) {
   console.log(object[key]);
}
share|improve this answer
thanks, but this return me "true", instead of aaa,bbb,ccc :( – Tom Mesgert Aug 7 '12 at 13:19
yeah thats what its priting to console the value of attributes which is true for every key, if you want to see aaa, bbb, ccc then use console.log(key); – SilentSakky Aug 7 '12 at 17:34
var object = { "a": 1, "b": 2};
$.each(object, function(key, value){
    console.log(key + ": " + object[key]);
});

//output
a: 1
b: 2
share|improve this answer

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