how to remove last element from array javascript code example
Example 1: javascript remove last element from array
array.pop();
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.pop();
Example 2: javascript remove last element from array
var colors = ["red","blue","green"];
colors.pop();
Example 3: remove last element from array javascript
array.pop();
Example 4: javascript remove last element from array
var arr = [1,0,2];
Example 5: how to remove last index of array in javascript
Array.pop();