javascript if i is the last element in array 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 item in array javascript
var colors = ["black", "white", "red", "yellow"];
var yellow = colors[colors.length - 1];