Skip to content

Instantly share code, notes, and snippets.

@inceptzero
Created July 1, 2015 10:57
Show Gist options
  • Save inceptzero/ed8b7ef1a7559de86596 to your computer and use it in GitHub Desktop.
Save inceptzero/ed8b7ef1a7559de86596 to your computer and use it in GitHub Desktop.
Javascript ucfirst()
function ucfirst(string) {
var ele = string.split('_');
var rstring = '';
for (var i = 0; i < ele.length; i++) {
rstring = rstring + ' ' + ele[i].charAt(0).toUpperCase() + ele[i].slice(1);
}
rstring = rstring.trim();
return rstring;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment