how do i grab the last element of an array code example
Example: get last item in array javascript
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