Lesson 13. JavaScript For…In Statement |
||||||
57 views
The for…in statement is used to loop (iterate) through the elements of an array or through the properties of an object. JavaScript For…In Statement The for…in statement is used to loop (iterate) through the elements of an array or through the properties of an object. The code in the body of the for … in loop is executed once for each element/property. Syntax
The variable argument can be a named variable, an array element, or a property of an object. ExampleUsing for…in to loop through an array:
|
| « Lesson 12. JavaScript Break and Continue | Is Skype for sale? » |
| Posted on Wednesday, January 28th, 2009 at 4:05 pm under Javascript For Beginners | RSS 2.0 Feed | |
January 28th, 2009 at 6:08 pm
[...] Lesson -13. JavaScript For…In Statement [...]