Skip to content

Instantly share code, notes, and snippets.

@mrroot5
Last active September 26, 2019 11:42
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 mrroot5/6e02fed4cc2313ce127f887325b88f21 to your computer and use it in GitHub Desktop.
Save mrroot5/6e02fed4cc2313ce127f887325b88f21 to your computer and use it in GitHub Desktop.
Javascript title case capitalize
function titleCase(text) {
if (typeof text !== 'string') return ''
return text.charAt(0).toUpperCase() + text.slice(1).toLowerCase();
}
var myString = "my awesomE String";
titleCase(myString);
// My awesome string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment