0% found this document useful (0 votes)
3 views1 page

Program-1 Calculate Length of Array

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Program-1 Calculate Length of Array

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<html>

<body>
<script language="javascript" type="text/javascript">
var a1=new Array();
document.write("<br>Length of array a1:"+a1.length);
var a2=new Array(10);
document.write("<br>Length of array a2:"+a2.length);
var a3=new Array(10,20,30,40,50);
document.write("<br>Length of array a3:"+a3.length);
</script>
</body>
</html>

You might also like