How to get the last array code example
Example 1: how to get last element of array
return array[array.length - 1];
Example 2: how to get last element of array
const lastItem = colors[colors.length - 1]
return array[array.length - 1];
const lastItem = colors[colors.length - 1]