Skip to content

Instantly share code, notes, and snippets.

Created March 25, 2012 20:24
Show Gist options
  • Save anonymous/2199549 to your computer and use it in GitHub Desktop.
Save anonymous/2199549 to your computer and use it in GitHub Desktop.
a guest on Mar 25th, 2012 - -.- ?
function lastElement(array) {
if (array.length > 0)
return array[array.length - 1];
else
return null;
}
show(lastElement([1, 2, null]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment