Copyright © tutorialspoint.com
Javascript array pop() method removes the last element from an array and returns that element.
array.pop(); |
Here is the detail of parameters:
NA
Returns the removed element from the array.
<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> |
This will produce following result:
element is : 9 element is : 4 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com