Answers for "js return ast element"

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
1

get last element of array javascript

let colors = ["red", "yellow", "green"];
let lastELement = colors[colors.length - 1]
Posted by: Guest on September-04-2020

Code answers related to "js return ast element"

Code answers related to "Javascript"

Browse Popular Code Answers by Language