The pop() and push()
functions turn a harmless array into a stack
<script type="text/javascript">
var numbers =
["one", "two", "three", "four"];
numbers.push("five");
numbers.push("six");
document.write(numbers.pop());
document.write(numbers.pop());
document.write(numbers.pop());
</script>
This produces
sixfivefour
No comments:
Post a Comment