Answers for "get last element of array javascfipt"

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
5

javascipt get last element of array

const arr = [1,2,3] ;
console.log(arr[arr.length - 1]);
Posted by: Guest on June-18-2020

Code answers related to "get last element of array javascfipt"

Code answers related to "Javascript"

Browse Popular Code Answers by Language