Skip to content

Instantly share code, notes, and snippets.

@iceener
Created May 9, 2020 12:00
Show Gist options
  • Save iceener/345bc04851bc42c82aa1a152ce161df9 to your computer and use it in GitHub Desktop.
Save iceener/345bc04851bc42c82aa1a152ce161df9 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