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 there is an Javascript object:

var objects={...};

Suppose, it has more than 50 properties, without knowing the property names (that's without knowing the 'keys') how to get each property value in a loop?

share|improve this question

6 Answers

up vote 21 down vote accepted

By using a simple for..in loop:

for(var key in objects) {
    var value = objects[key];
}
share|improve this answer
+1 for this nice answer. – Josua Marcel Chrisano Feb 14 at 3:32

Here's a reusable function for getting the values into an array. It takes prototypes into account too.

Object.values = function (obj) {
    var vals = [];
    for( var key in obj ) {
        if ( obj.hasOwnProperty(key) ) {
            vals.push(obj[key]);
        }
    }
    return vals;
}
share|improve this answer
Good one, though modifying Object is not good style – philk May 14 at 16:23
Modifying Object isn't much of a problem (Object.keys is a common shim), you are probably thinking of modifying the Object prototype. – sandstrom May 21 at 8:13

You can loop through the keys:

foo = {one:1, two:2, three:3};
for (key in foo){
    console.log("foo["+ key +"]="+ foo[key]);
}

will output:

foo[one]=1
foo[two]=2
foo[three]=3
share|improve this answer

in ECMAScript5 use

 keys = Object.keys(object);

Otherwise if you're browser does not support it, use the well-known for..in loop

for (key in object) {
    // your code here
}
share|improve this answer
4  
The question was asking for the values, not the keys. – zachelrath Oct 12 '12 at 19:19
@zachelrath You're right. - But this script is useful if you want to get the values because when you know the keys you are able to use object[key] to get the values in a loop. – fridojet Nov 14 '12 at 15:07
@fridojet But that can be done with for..in (and hasOwnProperty) so it doesn't really gain anything .. I wish that ECMAScript 5th defined Object.pairs (and Object.items for [[key, value], ..]), but alas, it does not. – user2246674 May 17 at 6:01

In ECMA 5, if you want to avoid the prototype chain then the following is short and avoids the filtering necessary with a for-in loop. Where obj is your object:

var values = Object.keys(obj).map(function (key) {
    return obj[key];
});

If you want to make it safe against null (as for-in is), then you can do Object.keys(obj || {})....

share|improve this answer
var objects={...}; this.getAllvalues = function () {
        var vls = [];
        for (var key in objects) {
            vls.push(objects[key]);
        }
        return vls;
    }
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.