如何从数组中删除所有元素

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

  • 如何在JavaScript中清空数组? 18个答案

  • a.length = 0;
    

    这就是你所需要的

    var a = [2,3,4,5,6];
    console.log(a);
    a.length = 0;
    console.log(a);

    a.length = 0; 如果你不想失去引用。 做a = []; 如果你想失去参考。

    链接地址: http://www.djcxy.com/p/23951.html

    上一篇: How to remove all the elements from array

    下一篇: How would you remove all objects from an array?