Length Automatically Updates
|
|
<html> <head> <title>Length Automatically Updates</title>
<script language="javascript" type="text/javascript"> <!--
var someArray = new Array(); alert(someArray.length); someArray[0] = "A"; alert(someArray.length); someArray[1] = "B"; alert(someArray.length);
//--> </script>
</head> <body>
<h1>Length Automatically Updates</h1>
</body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
|