in a new page html array element javascript code example
Example: how to read an array in javascript in HTML5
<body>
<h1>Creating Arrays</h1>
<h2>Regular:</h2>
<script language="JavaScript">
var Colors = new Array();
Colors[0] = "Blue";
Colors[1] = "Green";
Colors[2] = "Purple";
document.write(Colors);
</script>
<h2>Condensed:</h2>
<script language="JavaScript">
var Colors = new Array("Blue", "Green", "Purple");
document.write(Colors);
</script>
<h2>Literal:</h2>
<script language="JavaScript">
var Colors = ["Blue", "Green", "Purple"];
document.write(Colors);
</script>
</body>