just copy 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".

Thanks

link|improve this question
Can you specify a little more? What are you trying to achieve? – Jørgen Oct 24 '11 at 9:43
Make sure you declare x first... – Matt Oct 24 '11 at 9:44
3  
for a better reference look here: developer.mozilla.org/en/JavaScript/Reference/Statements/… and why so, look here: w3fools.com – Yoshi Oct 24 '11 at 9:45
Avoid using for in. Use for(var i=0;i<person.length;i++) instead. – OptimusCrime Oct 24 '11 at 10:24
feedback

1 Answer

up vote 0 down vote accepted

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.

link|improve this answer
The example with the alert should be person["fname"] rather than person[fname]. – nnnnnn Oct 24 '11 at 10:11
@nnnnnn: Updated, thanks :) – Sarfraz Oct 24 '11 at 10:51
feedback

Your Answer

 
or
required, but never shown

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