Skip to content

Instantly share code, notes, and snippets.

@savokiss
Created December 13, 2017 02:09
Show Gist options
  • Save savokiss/ec480da52b03a9343ef3c402ee22da91 to your computer and use it in GitHub Desktop.
Save savokiss/ec480da52b03a9343ef3c402ee22da91 to your computer and use it in GitHub Desktop.
Capitalize first letter with regexp
const capitalizeEveryWord = str => str.replace(/\b[a-z]/g, char => char.toUpperCase());
// capitalizeEveryWord('hello world!') -> 'Hello World!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment