get last array javascript code example

Example 1: javascript get last element of array

var foods = ["kiwi","apple","banana"];
var banana = foods[foods.length - 1]; // Getting last element

Example 2: javascript get last element of array

var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last item in the array

Example 3: javascript get last element in array

//im here because the ad

Example 4: get last element in array in js

var array = ['red','green','yellow']
console.log(array[array.length-1])

Example 5: get last element of array javascript

let colors = ["red", "yellow", "green"];
let lastELement = colors[colors.length - 1]

Example 6: javascript get last element in an array

var last = arr[arr.length - 1]