Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Created September 6, 2020 15:47
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 luislobo14rap/90d7bb358c1123f907dd7b8ae02026f3 to your computer and use it in GitHub Desktop.
Save luislobo14rap/90d7bb358c1123f907dd7b8ae02026f3 to your computer and use it in GitHub Desktop.
capitalize.js
// capitalize.js v1
function capitalize(text){
return text.replace(/\w/g, function(match){
return match.toUpperCase();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment