Posted in Javascript onJune 09, 2015
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
JavaScript中pop()方法的使用教程
- Author -
goldensun声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@