hs remove last element of array code example
Example 1: remove last element from array javascript
array.pop();
Example 2: how to remove the last element of an array in javascript
let cars = ['BMW', 'Benz', 'Audi'];
cars.pop(); // ['BMW', 'Benz']