Answers for "return last element of an array"

76

javascript get last element of array

var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last item in the array
Posted by: Guest on February-19-2020
0

js get last array element

const array = [1, 2, 3, 4]
const lastArrayElement = array[array.length - 1]
Posted by: Guest on October-08-2020
0

how to get the last element in an array

var colors = ["green", "blue", "red"]
var lastElem = colors.at(-1)
Posted by: Guest on September-06-2021

Code answers related to "return last element of an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language