Answers for "array remove last element js"

6

remove last element from array javascript

array.splice(-1,1)
Posted by: Guest on August-24-2020
2

how to remove the last element of an array in javascript

let cars = ['BMW', 'Benz', 'Audi'];

cars.pop(); // ['BMW', 'Benz']
Posted by: Guest on January-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language