Skip to content

Instantly share code, notes, and snippets.

@erming
Created May 5, 2014 23:47
Show Gist options
  • Save erming/20c19c9ce2e8ad4f5acc to your computer and use it in GitHub Desktop.
Save erming/20c19c9ce2e8ad4f5acc to your computer and use it in GitHub Desktop.
last.js
// Get the last word of a string.
function last(str) {
return str.trim().split(" ").pop();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment