capitalizeSentence
This file contains 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