Answers for "take out last item array"

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
15

javascript remove last element from array

var colors = ["red","blue","green"];
colors.pop();
Posted by: Guest on January-11-2020
-1

remove last element from array javascript

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

Code answers related to "take out last item array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language