Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
var obj = { key: value1, key: value2}

I would like to iterate it and get pars of (key and value1) and (key and value2)

if I use simple cycle:

for (var i in obj){
 console.log(obj[i])
}

I got: key value2 key value2

so obj[i] always take last key

share|improve this question

2 Answers

up vote 2 down vote accepted

Keys in JS objects must be unique.

What happens, is:

var obj = {
    key : value1
}

sets obj['key'] to value1.

The following declaration key : value2 overwrites your previous one.


Possible solution to your problem:

var obj = {
    key : [value1, value2]
}

for (var i in obj)
{
    if (obj[i] instanceof Array)
    {
        for (var k; k < obj[i].length; k++)
        {
            console.log(obj[i][k])
        }
    }
    else
    {
        console.log(obj[i]);
    }
}
share|improve this answer
Thank you I was wrong) – WHITECOLOR Sep 24 '12 at 8:47
Yes thank you, I did so. – WHITECOLOR Sep 24 '12 at 8:55

This is not possible. As in the declaration:

var obj = { key: value1, key: value2}

Initially obj.key is set as value1, in the second assignment value1 is rewritten with value2, So, obj.key is now value2.
So you cannot access the initial value.

share|improve this answer
Ok, thank you, my stupid mistake)) – WHITECOLOR Sep 24 '12 at 8:47
You're welcome man. "To err is human" :) – saji89 Sep 24 '12 at 8:49
Do mark an answer as the solution, to mark the question as solved. – saji89 Sep 24 '12 at 8:52

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.