JavaScript的array.clear()不是函数吗?

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

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

  • 不,不是的。 但是drawnDivs.length = 0应该可以工作。


    drawnDivs = [];


    它在Stack Overflow问题中得到了解答我如何在JavaScript中清空数组?

    答案的两个例子:

    var A = ['some', 'values', 'here'];
    
    //Method 1
    
    //(This was my original answer to the question)
    
    A = [];
    
    
    
    
    // Method 2 (as suggested by Matthew Crumley)
    
    A.length = 0
    

    Axel Rauschmayer博士对这两种方法进行了详细的介绍。

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

    上一篇: Is JavaScript's array.clear() not a function?

    下一篇: How do I delete an exported environment variable?