Skip to content

Instantly share code, notes, and snippets.

@adamcrampton
Created August 29, 2019 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamcrampton/a13387077f9c9bf7c9feefeb6f143776 to your computer and use it in GitHub Desktop.
Save adamcrampton/a13387077f9c9bf7c9feefeb6f143776 to your computer and use it in GitHub Desktop.
Convert JavsScript string to Title Case
function toTitleCase(string) {
return string.replace(
/\w\S*/g,
function(text) {
return text.charAt(0).toUpperCase() + text.substr(1).toLowerCase();
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment