Answers for "how to load last record in array 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
0

how to get last element of array in javascript

if (locArray.at(-1) === 'index.html') {
   alert('gaziza')
} else {
   // something else
}
Posted by: Guest on February-04-2022

Code answers related to "how to load last record in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language