说明
push() 方法可向数组的末尾添加一个或多个元素,并返回新的长度。
pop() 方法将删除 arrayObject 的最后一个元素,把数组长度减 1,并且返回它删除的元素的值。如果数组已经为空,则 pop() 不改变数组,并返回 undefined 值。
<script language="javascript" type="text/javascript">
//先进后出(FILO)
var temp=[];
document.write("Push<br />");
temp.push(1, 2, 3, 4);
document.write("数组元素有:"+temp+"<br />数组长度是:"+temp.length);
document.write("<br />");
document.write("Pop<br />");
temp.pop();
document.write("数组元素有:" + temp + "<br />数组长度是:" + temp.length);
//输出结果
// Push
// 数组元素有:1,2,3,4
// 数组长度是:4
// Pop
// 数组元素有:1,2,3
// 数组长度是:3
</script>