Skip to content

Instantly share code, notes, and snippets.

@damithg-dev
Created October 18, 2019 05:38
Show Gist options
  • Save damithg-dev/44ad9ba3e7ce6e06d391859959c635cd to your computer and use it in GitHub Desktop.
Save damithg-dev/44ad9ba3e7ce6e06d391859959c635cd to your computer and use it in GitHub Desktop.
capitalizeEveryWord = str => str.replace(/\b[a-z]/g, char => char.toUpperCase());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment