Answers for "how to take last n elements of array"

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
-2

how to get the last element of an array

//Lets we have a array called arr
let arr = ["s","fg","d"]
//Lets print the last element
print(arr[arr.length-1])
Posted by: Guest on December-05-2020

Code answers related to "how to take last n elements of array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language