PDA

View Full Version : JavaScript For...In Statement



JizzaBeez
03-03-2011, 09:45 AM
JavaScript For...In Statement

The for...in statement loops through the properties of an object.

Syntax

for (variable in object)
{
code to be executed
} Note: The code in the body of the for...in loop is executed once for each property.

Example
Looping through the properties of an object:

var person={fname:"John",lname:"Doe",age:25};

for (x in person)
{
document.write(person[x] + " ");
}
Try it yourself ยป (http://www.w3schools.com/js/tryit.asp?filename=tryjs_object_for_in)