var colors = ["red","blue","green"]; var green = colors[colors.length - 1];//get last item in the array const array = ["foo", "bar", "fizz", "buzz"]; const lastElem = array.at(-1); // returns "buzz" arr.slice(-1)[0]