js中数组的length属性

length属性不是只读的,它可以改变数组的长度

var colors = ["red","blue","green"]; 
alert(colors.length); //3
colors.length = 2;
alert(colors[2]); //undefined

colors.length = 4;
alert(colors[3]); //undefined

colors[colors.length] = "black"; //党把一个值放在当前数组大小的位置上时,数组长度等于最后一项的索引加1

colors[99] = "black"; 
    原文作者:代码痴汉
    原文地址: https://blog.csdn.net/lieyanhaipo/article/details/73105223
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞