Skip to content

Instantly share code, notes, and snippets.

@stevelippert
Created February 13, 2014 20:28
Show Gist options
  • Select an option

  • Save stevelippert/8983184 to your computer and use it in GitHub Desktop.

Select an option

Save stevelippert/8983184 to your computer and use it in GitHub Desktop.
Getting the last element of an Array in JavaScript
if (!Array.prototype.last){
Array.prototype.last = function(){
return this[this.length - 1];
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment