Output all array element with document.write : Array Loop : Array JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Array » Array Loop »

 

Output all array element with document.write

















<html>
<head>
<title>Writing an Array</title>

</head>
<body>
<P>

<script language="javascript" type="text/javascript">
<!--

var myArray = new Array();
myArray[0"AAA";
myArray[1"BBB";
myArray[2"CCC";
for (var i=0; i<myArray.length; i++) {
  document.write("Element " +i+ " contains: " +myArray[i]"<br />");
}

//-->
</script>

</p>

</body>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Array
» Array Loop