Skip to content

Instantly share code, notes, and snippets.

@daronwolff
Created March 29, 2017 15:54
Show Gist options
  • Save daronwolff/24ac953b8b0419b6e06611745e8e669d to your computer and use it in GitHub Desktop.
Save daronwolff/24ac953b8b0419b6e06611745e8e669d to your computer and use it in GitHub Desktop.
CapitalizeString and remove white spaces
function capitalize(str) {
return str.replace(/\b\w/g, l => l.toUpperCase())
.replace(/\s/g, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment