push()相反;

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

  • 如何从JavaScript中的数组中删除特定的元素? 62个答案

  • 那么,你有两个问题。 push() (与问题标题相同)是pop()

    var exampleArray = ['myName'];
    exampleArray.push('hi');
    console.log(exampleArray);
    
    exampleArray.pop();
    console.log(exampleArray);

    push()在最后添加; pop()从结束删除。

    unshift()添加到前面; shift()从前面删除。

    splice()可以splice()执行任何操作。

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

    上一篇: Opposite of push();

    下一篇: Any disadvantages to using iframes