Skip to content

Instantly share code, notes, and snippets.

@cms
Last active May 10, 2019 22:14
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 cms/c4339ba35d69adef6934aee504004372 to your computer and use it in GitHub Desktop.
Save cms/c4339ba35d69adef6934aee504004372 to your computer and use it in GitHub Desktop.
capitalizeSentence
function capitalizeSentence(str) {
return str.replace(/^\w|(\s\w)/g, function(match, index) {
return match.toUpperCase()
});
}
capitalizeSentence('Lorem ipsum dolor sit amet, consectetur adipiscing elit.');
// "Lorem Ipsum Dolor Sit Amet, Consectetur Adipiscing Elit."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment