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.