Previous PageNext Page

7.5.7 for...in Statement

Executes a statement for each element of an object or array.
 

Syntax

for (variable in [object | array])

statement

variable
A variable that can hold any of the elements of object.
object, array
An object or array over which to iterate.
statement
The statement to be executed for each member of object. Can be a compound statement.

Remarks

Before each iteration of a loop, variable is assigned the next element of object. You can then use it in any of the statements inside the loop exactly as if you were using the element of object.
 
When iterating over an object, there is no way to determine or control the order in which the members of the object are assigned to variable.
 

Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page