Answers for "javascript get array without last item"

26

js take last item in array

const heroes = ["Batman", "Superman", "Hulk"];
const lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"
Posted by: Guest on March-16-2020
-1

remove last element from array javascript

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

Code answers related to "javascript get array without last item"

Code answers related to "Javascript"

Browse Popular Code Answers by Language