cannot remove last item of array javascript code example
Example 1: javascript delete second last element of array
arr.splice(arr.length - 2, 1);
Example 2: how to remove the last element of an array in javascript
let cars = ['BMW', 'Benz', 'Audi'];
cars.pop(); // ['BMW', 'Benz']