Skip to content

Instantly share code, notes, and snippets.

@louy2
Created April 8, 2016 10:08
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 louy2/fc63889bac8715c8238d6305d4cc2824 to your computer and use it in GitHub Desktop.
Save louy2/fc63889bac8715c8238d6305d4cc2824 to your computer and use it in GitHub Desktop.
Titlecase string in JavaScript with RegExp https://www.freecodecamp.com/challenges/title-case-a-sentence
function titleCase(str) {
return str.toLowerCase().replace(/(^[a-z]| [a-z])/g, function(match) {
return match.toUpperCase();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment