how to find last element of an array in javascript? code example
Example 1: javascript get last element in array
var array =[1,2,3,4];
var last= array[array.length-1];
Example 2: get last element of array javascript
let colors = ["red", "yellow", "green"];
let lastELement = colors[colors.length - 1]