Skip to content

Instantly share code, notes, and snippets.

@davidblurton
Created December 12, 2016 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidblurton/f9f5c435f4cf5bf61dccf178c6f1613a to your computer and use it in GitHub Desktop.
Save davidblurton/f9f5c435f4cf5bf61dccf178c6f1613a to your computer and use it in GitHub Desktop.
function capitalize(str) {
return str[0].toUpperCase() + str.slice(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment