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
I want to know that, what I have to assume instead of "x". Thanks | |||
|
feedback
|
|
The
Here | |||||
feedback
|
xfirst... – Matt Oct 24 '11 at 9:44for(var i=0;i<person.length;i++)instead. – OptimusCrime Oct 24 '11 at 10:24