JavaScript For...In Statement
The for...in statement loops through the properties of an object.Syntax
| for (variable in object) { code to be executed } |
Example
Looping through the properties of an object:Example
var person={fname:"John",lname:"Doe",age:25};for (x in person)
{
document.write(person[x] + " ");
}
No comments:
Post a Comment