SQL PHP HTML ASP JavaScript articles and free scripts to download
 

Pop() to remove last element of an array

We can remove the last element of the array by applying pop() method to the JavaScript function. This way the array length or size also decreases by one. Here is the syntax of applying pop() method to an array

scripts.pop();


Where scripts is our array object.

We can use shift() object to remove first object from the array

Here is the complete code for example of pop() function.



<script type="text/javascript">
var scripts = new Array();
scripts[0] = "PHP";
scripts[1] = "ASP";
scripts[2] = "JavaScript";
scripts[3] = "HTML";
document.write(scripts.join(" <br> "));
document.write("<br>--Now after applying pop()--<br>");
scripts.pop();
document.write(scripts.join(" <br> "));

</script>


The last element HTML will be removed from the array.




Further readings
Declaring array in JavaScript
Displaying elements of an array by looping through
join():Displaying elements of an array using join() function
sort():Sorting of elements of an array using function
length:Length property to get the total number of elements in an array
reverse():Reversing the elements of an array
pop():Removeing last element of an array by using pop()
shift():Removeing first element of an array using shift()
push():Adding elements to array using push()
unshift():Adding elements to array using unshift()
splice():Add replace remove elements from an array using splice()
split():Creating array by splitting string variable
toString: To join all elements and create a string
concat: To join two or more arrays to a single array
slice: To return element from an array with starting and ending positions
Two Dimensional Array: Adding and displaying elements




Join Our Email List
Email:  
For Email Newsletters you can trust
Array Functions