Initialize a string array during declaration and check the array size : Array Declaration « Array « JavaScript Tutorial






<html>
<head>
<title>A Simple Page</title>
<script language="javascript">
<!--
var days_of_week = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
alert(days_of_week.length);
//  -->
</script>
</head>
<body>

</body>
</html>








11.2.Array Declaration
11.2.1.Array declaration with element count
11.2.2.Integer Array Declaration with initialization
11.2.3.Initialize a string array during declaration and check the array size
11.2.4.Define two arrays and use for statement to ouput their values
11.2.5.Store strings in array
11.2.6.Output array element in a HTML table format
11.2.7.Paralled array