index of last item array javascript code example
Example 1: javascript last element of array
let arr = [1,2,3]
arr[arr.length - 1] //returns last element in an array
Example 2: get last element of array javascript
let colors = ["red", "yellow", "green"];
let lastELement = colors[colors.length - 1]