Answers for "return array except last element javascript"

25

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
10

javascript take last element of array

let array = [1,2,3,4,5];
let lastElement = array.pop();

// array -> [1,2,3,4];
// lastElement = 5;
Posted by: Guest on May-06-2020

Code answers related to "return array except last element javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language