JavaScript中pop()方法的使用教程
JavaScript数组pop()方法删除数组中的最后一个元素,并返回该元素。
语法
array.pop();
下面是参数的详细信息:
- NA
返回值:
返回从数组中删除的元素。
例子:
<html> <head> <title>JavaScriptArraypopMethod</title> </head> <body> <scripttype="text/javascript"> varnumbers=[1,4,9]; varelement=numbers.pop(); document.write("elementis:"+element); varelement=numbers.pop(); document.write("<br/>elementis:"+element); </script> </body> </html>
这将产生以下结果:
elementis:9 elementis:4