splice remove last element 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: javascript remove last item
array.pop();
var colors = ['Yellow', 'Red', 'Blue', 'Green'];
var removedColor = colors.pop();
console.log(colors);
Example 4: javascript remove last element from array
var arr = [1,0,2];
Example 5: remove last from array javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
document.write(fruits);
document.write("<br>");
fruits.pop();
document.write(fruits)