js remove last item from array 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: how to remove last element in js
var array = [1, 2, 3, 4, 5, 6];
array.pop();
console.log(array);
Example 4: remove last element from array javascript
array.pop();
Example 5: js array delete last
array.pop()
Example 6: javascript delete second last element of array
arr.splice(arr.length - 2, 1);