for loop - javascript "for (x in y)" statements - Stack Overflow

just copied this code from w3schoolsvar person={fname:"John",lname:"Doe",age:25}

//just copied this code from w3schools
var person={fname:"John",lname:"Doe",age:25}; 

for (x in person)
{
document.write(person[x] + " ");
}

I want to know that, what I have to assume instead of "x".

//just copied this code from w3schools
var person={fname:"John",lname:"Doe",age:25}; 

for (x in person)
{
document.write(person[x] + " ");
}

I want to know that, what I have to assume instead of "x".

Share Improve this question edited Jan 5, 2016 at 11:46 Lucky 17.4k19 gold badges120 silver badges156 bronze badges asked Oct 24, 2011 at 9:39 SiriusKoderSiriusKoder 3412 gold badges4 silver badges12 bronze badges 6
  • Can you specify a little more? What are you trying to achieve? – Jørgen Commented Oct 24, 2011 at 9:43
  • Make sure you declare x first... – Matt Commented Oct 24, 2011 at 9:44
  • 3 for a better reference look here: developer.mozilla/en/JavaScript/Reference/Statements/… and why so, look here: w3fools. – Yoshi Commented Oct 24, 2011 at 9:45
  • Avoid using for in. Use for(var i=0;i<person.length;i++) instead. – OptimusCrime Commented Oct 24, 2011 at 10:24
  • 1 Could you explain why? @OptimusCrime – Alexander Mistakidis Commented Dec 11, 2012 at 15:53
 |  Show 1 more ment

2 Answers 2

Reset to default 6

You want to have

for ( x in Object.keys(person)) {
  console.log(person[x]);
}

this will give you a list of KEYS rather than a list of values.

The person is object and X is variable used in iteration of the for loop, you can name it anything other than X also :). Here X works as key of the object for example:

alert(person["fname"]);

Here fname is stored in X along with other keys such as lname and age.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743812085a4511231.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信