首页 > 代码库 > 向数组中添加元素

向数组中添加元素

1 var arr = [‘x‘, ‘xx‘, ‘xxx‘];
arr[length] = ‘xxx‘;
arr.push = ‘xxx‘;

向数组中添加元素