JavaScript中pop()方法的使用教程

这篇文章主要介绍了JavaScript中pop()方法的使用教程,是JS入门学习中的基础知识,需要的朋友可以参考下

JavaScript数组pop()方法删除数组中的最后一个元素,并返回该元素。
语法

array.pop();

下面是参数的详细信息:

    NA

返回值:

返回从数组中删除的元素。
例子:

<html> <head> <title>JavaScript Array pop Method</title> </head> <body> <script type="text/javascript"> var numbers = [1, 4, 9]; var element = numbers.pop(); document.write("element is : " + element ); var element = numbers.pop(); document.write("<br />element is : " + element ); </script> </body> </html>

这将产生以下结果:

element is : 9 element is : 4

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgdpzx.html