Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AJamesPhillips/a18b89b00b92840426b7231afa058220 to your computer and use it in GitHub Desktop.
Save AJamesPhillips/a18b89b00b92840426b7231afa058220 to your computer and use it in GitHub Desktop.
JavaScript array last function
// Similar to Ruby array `last` method
Object.defineProperty(Array.prototype, "last", {
get: function(){
return this.length && this[this.length-1];
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment