array remove last element 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: javascript remove last item
array.pop();
var colors = ['Yellow', 'Red', 'Blue', 'Green'];
var removedColor = colors.pop();
console.log(colors);
Example 4: remove last element from array javascript
array.splice(-1,1)
Example 5: javascript pop
var cars = ['mazda', 'honda', 'tesla'];
var telsa=cars.pop();
Example 6: javascript array remove last
let yourArray = ["aaa", "bbb", "ccc", "ddd"];
yourArray.pop();