Skip to content

Instantly share code, notes, and snippets.

@SoldierCorp
Created February 15, 2016 03:10
Show Gist options
  • Save SoldierCorp/2f532ce70d43fb2a3c1e to your computer and use it in GitHub Desktop.
Save SoldierCorp/2f532ce70d43fb2a3c1e to your computer and use it in GitHub Desktop.
Javascript ucfirst
var string = 'github';
string = string[0].toUpperCase() + string.slice(1);
console.log(string); //Github
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment