首页 > 代码库 > 给数组添加属性

给数组添加属性

var arr = [];
arr[0] = ‘a‘;
arr[1] = ‘b‘;
arr.foo = ‘c‘;
console.log(arr)
console.log(arr.length);

技术分享

 

给数组添加属性