Answers for "jsretrieve last item of array"

C
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 entry from array in Javascript

arr.slice(0, -1);    // returns [1,0]
Posted by: Guest on October-27-2021

Code answers related to "C"

Browse Popular Code Answers by Language