js shorthand to get last item in array code example
Example 1: last element from list javascript
const lastItem = colors[colors.length - 1]
Example 2: js array last element get
.slice(-1)[0]
const lastItem = colors[colors.length - 1]
.slice(-1)[0]