Last active
May 10, 2019 22:14
-
-
Save cms/c4339ba35d69adef6934aee504004372 to your computer and use it in GitHub Desktop.
capitalizeSentence
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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