文章39 | 阅读 16514 | 点赞0
上篇文章,我们介绍了数组的创建和数组通过索引来读取数据,这里继续介绍数组的其他方法,大概是,先定义数组的大小,然后一一写出每个数组元素的值。
<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
</head>
<body>
<script type ="text/javascript">
var people = new Array(5);
people[0] = "张三";
people[1] = "李四";
people[2] = "王二";
people[3] = "Lucy";
people[4] = "Tom";
document.write(people[3]);
</script>
</body>
</html>
如果无法确定数组大小,就这样写,不写数组长度。
var people = new Array();
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/u011541946/article/details/70953571
内容来源于网络,如有侵权,请联系作者删除!