Answers for "js how to get the 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
1

find last element in array nodejs

var a = loc_array.slice(-1)[0]
Posted by: Guest on August-13-2020
1

get last element in array in js

var array = ['red','green','yellow']
console.log(array[array.length-1])
Posted by: Guest on January-24-2021
0

how to select last element in a array

if (loc_array[loc_array.length - 1] === 'index.html') {
   // do something
} else {
   // something else karunakar
}
Posted by: Guest on August-04-2020

Code answers related to "js how to get the last element of an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language