Answers for "how to get last element of array using js"

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
9

how to get last item in array javascript

let nums = [1,2,3,4,5];
let lastOne = nums.pop();
// -> lastOne = 5
// -> nums = [1,2,3,4];
Posted by: Guest on May-08-2020

Code answers related to "how to get last element of array using js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language