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.
Examples
For...In statement
How to use a for...in statement to loop through the elements of an array.
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
for (variable in object)
{
code to be executed
}
|
The variable argument can be a named variable, an array element, or a
property of an object.
Example
Using for...in to loop through an array:
<html>
<body>
<script type="text/javascript">
var x
var mycars = new Array()
mycars[0] = "Saab"
mycars[1] = "Volvo"
mycars[2] = "BMW"
for (x in mycars)
{
document.write(mycars[x] + "<br />")
}
</script>
</body>
</html>
|
Want To Be A Web Master?
If you want to be a Web Master, you will have to host your web site with an ISP (Internet Service Provider).
MaximumASP offers seven different configurations of dedicated servers to meet your Windows and .NET hosting needs.
Hosted on our multi-tiered Enterprise Class network, these servers provide the performance, security and reliability
you need to host your high end web sites and applications.
Visit MaximumASP
|