<html> <head> <title>A Simple Page</title> <script language="JavaScript"> <!-- var myarray = new Array("","","","","","","","","",""); for (x in myarray) { myarray[x] = "img" + x + ".gif"; } document.write(myarray); // --> </script> </head> <body> </body> </html>
11.3.Array Index | ||||
11.3.1. | Reference array value by index | |||
11.3.2. | Use variable as the array index | |||
11.3.3. | Append elements to Array by using the index | |||
11.3.4. | Use for each loop to assign array element value | |||
11.3.5. | Reference array element by random index value |