javascript last item in array

JavaScript
var my_array = /* some array here */;
var last_element = my_array[my_array.length - 1];var colors = ["red","blue","green"];
var green = colors[colors.length - 1]; //get last item in the array
arr.slice(-1)[0] 
const lastItem = colors[colors.length - 1]

Source

Also in JavaScript: