当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript length属性
The length property sets or returns the number of elements in an array.
length属性可设置或返回数组里元素的数量。
arrayObject.length |
In this example we will show how to use the length property to both return and set the length of an array:
在这个举例中我们将展示如何使用length属性在返回数组长度的同时设置它的长度
<script type="text/javascript"> var arr = new Array(3) document.write("原始长度: " + arr.length) arr.length=5 </script> |
The output of the code above will be:
输出结果为:
原始长度: 3 |
length
In this example we will show how to use the length property.
在这个举例中我们将展示如何使用length属性