how to get the last element in javascript

JavaScript
var colors = ["red","blue","green"];
var green = colors[colors.length - 1];//get last item in the arrayconst nums = [1, 2, 3, 4, 5, 6, 7];
const lastOne = nums[nums.lenght - 1]; // last element of array
Source

Also in JavaScript: