In PHP, we can loop through an associative array, and get the values of both the key and the value like this:

$myArray = array(
    'key1' => 'value1',
    'key2' => 'value2'
);

foreach($myArray as $key => $val){
    echo 'The value of "'.$key.'" is "'.$val.'".\n';
}

/* Output:
The value of "key1" is "value1".
The value of "key2" is "value2".
*/

Is there any way this can be done in javascript?

myObject = { 
    'key1': 'value1',
    'key2': 'value2'
};

for (val in myObject) {
    // check hasOwnProperty and what not...

    // Now, how do I get the key value?
}
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Your question has a concept reversed: JavaScript's for/in loop gets you the key, not the value. You then obtain the value by using the key.

var myObject = { 
        'key1': 'value1',
        'key2': 'value2'
    },
    key,
    val;

for( key in myObject )
{
    if( Object.prototype.hasOwnProperty.call( myObject, key ) )
    {
       val =  myObject[key];
    }
}
link|improve this answer
Why not simply myObject.hasOwnProperty(key)? – Joseph Silber Aug 23 '11 at 15:02
Crockford mentions a few reasons, but the main one is just in case you have overridden hasOwnProperty() for your object. – JAAulde Aug 23 '11 at 16:27
feedback

That's easy, using myObject[val]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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