Answers for "how to check for last item in iteration javascript"

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
10

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 check for last item in iteration javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language