Skip to content

Instantly share code, notes, and snippets.

@webinista
Created July 4, 2018 16:12
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 webinista/0bd7be3b8cb7afa710dafba803c4f432 to your computer and use it in GitHub Desktop.
Save webinista/0bd7be3b8cb7afa710dafba803c4f432 to your computer and use it in GitHub Desktop.
Uppercase the first letter of a word with JavaScript
function ucfirst(word) {
const wordarray = word.split('');
wordarray[0] = wordarray[0].toUpperCase();
return wordarray.join('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment