remove last object of array code example
Example 1: javascript remove last element from array
var colors = ["red","blue","green"];
colors.pop();
Example 2: how to remove last element in js
var array = [1, 2, 3, 4, 5, 6];
array.pop();
console.log(array);
//Output in console section:
//[1, 2, 3, 4, 5]
Example 3: remove last element from array javascript
array.pop();
Example 4: javascript delete second last element of array
arr.splice(arr.length - 2, 1);