Use for in loop to go through an array : For « Language Basics « JavaScript DHTML






Use for in loop to go through an array

  

<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
var myarray = new Array(5);
myarray[0] = 5
myarray[1] = 8
myarray[2] = 10
myarray[3] = 18
myarray[4] = 180
for (x in myarray) 
{
    myarray[x] = ++myarray[x];
}
alert(myarray);
alert(x);

</script>
</head>
<body>

</body>
</html>

   
    
  








Related examples in the same category

1.For loop for lines
2.Check the loop counter
3. Drawing a Christmas Tree Using Nested For Loops
4.For loop
5.Using a for..in Loop in JavaScript
6.A Demonstration of a Nested Loop
7.A for Loop Used to Count from 0 to 99
8.Using the label Statement
9.Using the continue and break Statements
10.Use of the for Statement
11.The break Statement
12.The continue Statement
13.Labeled Statements
14.Plain for loop
15.For loop with alert dialog
16.Declare for loop counter
17.Control the loop step
18.Use for loop to fill an array