get last item in array js

JavaScript
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last item in the arrayvar colors = ["red","blue","green"];
var green = colors[colors.length - 1]; //get last item in the array
if (loc_array[loc_array.length - 1] === 'index.html') {
   // do something
} else {
   // something else
}Yo an add that was searching this up, is where I found the chrome extension.
Source

Also in JavaScript: