put the element in the last position of an array javascript ES6 code example
Example: Javascript get last item in array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1]; //get last item in the array
var colors = ["red","blue","green"];
var green = colors[colors.length - 1]; //get last item in the array