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.

I am a beginner of js. I tried find a solution over internet but I couldnt.

Is there a way to know what is the name of a variable??

On below, i will be the value of each parameter......, Please advice!!!

Object = { a: xxx, b : xxx };


for(var i in Object ) { if(/* i`s variable name is 'a'*/){ /* do something*/ }  }
share|improve this question

1 Answer

up vote 2 down vote accepted

As per your example:

obj = { a: 'aaa', b: 'bbb' };

for (var i in obj) {
    if (i === 'a') {
        //do something
    }
}

Another method without looping through the object:

obj = { a: 'aaa', b: 'bbb' };

if ('a' in obj) {
    // do something
}
share|improve this answer
Thank you very much!!! – Till Jan 3 at 2:10
@pst yes, no need to loop over the items in obj. – Shivan Raptor Jan 3 at 2:15
Good advice!!thank you very much!! – Till Jan 3 at 2:16
@pst Thanks for your input. Answer updated. – timc Jan 3 at 2:21

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.