什么是将值附加到数组的方法?

这个问题在这里已经有了答案:

  • 如何将某些东西附加到数组中? 25个答案

  • 制作一个新阵列。

    var fruits = ["Banana", "Orange", "Apple", "Mango"];
    

    然后按这样的值

    fruits.push("Kiwi");
    

    你可以这样做:

    // 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);
    

    另外,如果你有一个对象,并且你希望它的行为像一个数组(不推荐),你可以使用

    Array.prototype.push.call(objectLikeArray, 10);
    
    链接地址: http://www.djcxy.com/p/17939.html

    上一篇: What’s a way to append a value to an array?

    下一篇: How can I append an array of objects to an already existing array?