Node.js examples for Array:Last Element
Add method to array to get last element
Array.prototype.last = function() { return this[this.length-1]; }