Skip to content

Instantly share code, notes, and snippets.

@iceener
Created May 13, 2020 21:09
Show Gist options
  • Save iceener/670077bc1606057fa2b825030d63a25d to your computer and use it in GitHub Desktop.
Save iceener/670077bc1606057fa2b825030d63a25d to your computer and use it in GitHub Desktop.
// Uppercase first letter of a string
function ucFirst(string) {
return string.charAt(0).toUppercase() + string.slice(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment