<html>
<head>
<title>Array Type Example 4</title>
<script type="text/javascript">
var colors = ["red", "blue", "green"]; //creates an array with three strings
colors.length = 4;
alert(colors[3]); //undefined
</script>
</head>
<body>
</body>
</html>