追加到数组
如何在Javascript中追加数组
答案 0 :(得分:1)
你可以这样做:
// create a new array, using the `literals` instead of constructor
var array = [];
// add a value to the last position + 1 (that happens to be array.length)
array[array.length] = 10;
或
// use the push method from Array.
array.push(10);
此外,如果你有一个Object并且你希望它的行为像一个数组(不推荐),你可以使用
Array.prototype.push.call(objectLikeArray, 10);
答案 1 :(得分:1)
制作一个新阵列。
var fruits = ["Banana", "Orange", "Apple", "Mango"];
然后推送像这样的值
fruits.push("Kiwi");