get last item of {} javascript 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