Skip to content

Instantly share code, notes, and snippets.

@piotrlo
Forked from iceener/capitalize-all-words.js
Created June 10, 2020 07:30
Show Gist options
  • Save piotrlo/c0f10064d4c735db091c18d564ece803 to your computer and use it in GitHub Desktop.
Save piotrlo/c0f10064d4c735db091c18d564ece803 to your computer and use it in GitHub Desktop.
// Capitalize all words of a string
function capitalize(string) {
return string.replace(/\b[a-z]/g, (char) => char.toUpperCase());
}
capitalize('overment rocks!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment