find last element of objects of array code example
Example 1: get last item in array
let array = [1,2,3,4,5]
let sliced = array.slice(-1)[0]
//OR
let popped = array.slice(-1).pop()
//OR
let lengthed = array[array.length - 1]
Example 2: get last item in array javascript
var colors = ["red","blue","green"];
var green = colors[colors.length - 1]; //get last item in the array