I have a JavaScript object like the following

 var p =
    {
        "p1": "value1",
        "p2": "value2",
        "p3": "value3"
    };

Now I want to loop through all p elements (p1,p2,p3...) and get their key and values. How can I do that? I can modify the JavaScript object if necessary . My ultimate goal is to loop through some key value pairs. And if possible I want to avoid using eval.

link|improve this question

70% accept rate
I changed JSON to JavaScript (object) to avoid confusing of object literals and JSON. – Felix Kling Mar 29 at 16:48
feedback

8 Answers

up vote 216 down vote accepted

You can use the for-in loop as shown by others. However, you also want to make sure that the key you get is an actual property of an object, and doesn't come from the prototype:

for (var key in p) {
  if (p.hasOwnProperty(key)) {
    alert(key + " -> " + p[key]);
  }
}
link|improve this answer
37  
+1 for using hasOwnProperty – Andreas Grech Apr 7 '09 at 13:42
1  
Would propose that you change the alert line just for clarity to alert(key + " -> " + JSON.stringify(p[key])); – stevemidgley Aug 18 '11 at 22:03
2  
Can you explain the need for hasOwnProperty? What you mean by prototype? – kamaci Aug 22 '11 at 12:46
6  
In javascript, every object has a bunch of built-in key-value pairs that have meta-information. When you loop through all the key-value pairs for an object you're looping through them too. hasOwnPropery() filters these out. – danieltalsky Jan 27 at 15:56
feedback

You have to use the for-in loop

But be very careful when using this kind of loop, because this will loop all the properties along the prototype chain.

Therefore, when using for-in loops, always make use of the hasOwnProperty method to determine if the current property in iteration is really a property of the object you're checking on:

for (prop in p) {
    if (!p.hasOwnProperty(prop)) {
        //The current property is not a direct property of p
        continue;
    }
    //Do your logic with the property here
}
link|improve this answer
5  
This is better than levik's solution because it allows the main logic to be only one nested loop in rather than two; making for easier to read code. Although I'd loose the the brackets around the continue; they are superfluous. – SystemicPlural Apr 6 '11 at 9:55
3  
I would not remove the { } personally because an if without them makes it a little unclear what is part of the if and what is not. But I guess that's just a matter of opinion :) – pimvdb Aug 5 '11 at 12:01
4  
Yes, I prefer keeping the { } mainly to avoid confusion if one later on needs to add something to the if scope. – Andreas Grech Aug 5 '11 at 12:21
Reading my previous comment, I realized that I didn't use the correct terms, because I said "if scope"; but keep in mind that JavaScript only has function scope. So what I actually meant was "if block". – Andreas Grech Nov 11 '11 at 11:08
I agree with the other commenters. This is the best solution. – Andrew May 17 at 21:43
feedback

You can just iterate over it like:

for (var key in p) {
  alert(p[key]);
}

Note that key will not take on the value of the property, it's just an index value.

link|improve this answer
feedback

Under ECMAScript 5, you can combine Object.keys() and Array.prototype.forEach():

    var obj = { first: "John", last: "Doe" };
    // Visit non-inherited enumerable keys
    Object.keys(obj).forEach(function(key) {
        console.log(key);
    });
link|improve this answer
feedback
var p =
    {
        "p1": "value1",
        "p2": "value2",
        "p3": "value3"
    };

for (var key in p) 
{
    if (p.hasOwnProperty(key))
    {
    alert(key + " = " + p[key]);
    }
}
---------------------------
---------------------------
Output:
p1 = values1
p2 = values2
p3 = values3
link|improve this answer
feedback

I have put together a little JSON sample that iterates over a JavaScript object and posts the property values to a cross domain server that is hosts an DotNet.aspx page that then converts a C# object to a JSON string that is then posted back to the browser and converted back to a JavaScript object without having to use Window.Eval()

The resultant JavaScript object is then finally past back to a call-back function that is ready to uses and the code does not need 3rd party libraries, works in net framework 2.0 and upwards and has been tested with IE6-IE9, Firefox plus it's lightweight.

Click my name or see http://www.flashinvader.com/developers_corner/simple_json_objects_using_javascript_and_aspx.html for full details

link|improve this answer
feedback

After looking through all the answers in here, hasOwnProperty isn't required for my own usage because my json object is clean; there's really no sense in adding any additional javascript processing. This is all I'm using:

for (var key in p) {
    console.log(key + ' => ' + p[key]);
    // key is key
    // value is p[key]
}
link|improve this answer
1  
Whether the JSON object is clean or not is irrelevant. If at any other time some code sets a property on Object.prototype, then it will be enumerated by for..in. If you are sure you are not using any libraries that do that, then you don't need to call hasOwnProperty. – gWiz Jan 13 at 20:15
feedback
for(key in p) {
  alert(key);
}

Note: you can do this over arrays, but you'll iterate over the length and other properties, too.

link|improve this answer
2  
When using a for loop like that, key will just take on an index value, so that will just alert 0, 1, 2, etc... You need to access p[key]. – Bryan Mar 26 '09 at 6:07
feedback

Your Answer

 
or
required, but never shown

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