JavaScript Tutorial





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
Java-Script Tutorial
Introduction Introduction
Variables Variables
Operators Operators
Statements Statements
Loops Loops
Functions Functions
Objects Objects
Arrays Arrays
Cookies JS Cookies
Browser Objects Browser Objects
Form DOM Form DOM
Style Objects DOM Style Objects
Forums Ask Your Doubts
Scraps More about Javascript
Feedback Feedback
 




Javascript pop() Method - Array Function


Tutorials Javascript

Topic

How to delete an element from the array and get the deleted element as the return value?
What is the use of pop() function in javascript?



Explanation
Method: pop() :
        This method is used to delete the last element of an array and to return the deleted element. The length of the array gets affected by this function.

Syntax:
array1.pop();

Example Code:
<script language="javascript">
var stack=["a","b","c","d"]
var ele = stack.pop();
document.write(ele);
</script>


Result:






A Note
Javascript (JS) is one of the most used languages in the world. Some times spelled as Java Script. Hope you enjoy this tutorial. Do send your feedback or suggestions on this javascript or java script tutorial. This is a copyright content.

Other Links

web hosting