Skip to content

Instantly share code, notes, and snippets.

@dragonza
Created March 24, 2018 18:12
Show Gist options
  • Save dragonza/6d286f2e176cde6832101c3cc308db55 to your computer and use it in GitHub Desktop.
Save dragonza/6d286f2e176cde6832101c3cc308db55 to your computer and use it in GitHub Desktop.
Sentence Capitalization
function capitalize(str) {
let result = '';
for (let word of str.split(' ')) {
result += word[0].toUpperCase() + word.slice(1) + ' ';
}
return result.trim();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment