Answers for "javascript throw last element of array"

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
3

remove last element from array javascript

array.splice(-1,1)
Posted by: Guest on August-24-2020

Code answers related to "javascript throw last element of array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language