Skip to content

Instantly share code, notes, and snippets.

@platypusrex
Created October 15, 2015 14:50
Show Gist options
  • Save platypusrex/34c8dc8578e59c449836 to your computer and use it in GitHub Desktop.
Save platypusrex/34c8dc8578e59c449836 to your computer and use it in GitHub Desktop.
Javascript - Title case any phrase
function titleCase(str) {
return str.split(' ').map(function(val){
return val.charAt(0).toUpperCase() + val.slice(1).toLowerCase();
}).join(' ');
}
titleCase("sHoRt AnD sToUt");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment