Skip to content

Instantly share code, notes, and snippets.

@Scarbous
Created November 15, 2021 13:25
Show Gist options
  • Save Scarbous/568bda5929ac1096073eb7a9d9318b36 to your computer and use it in GitHub Desktop.
Save Scarbous/568bda5929ac1096073eb7a9d9318b36 to your computer and use it in GitHub Desktop.
Add ucfirst to String
String.prototype.ucfirst = function() { return this.charAt(0).toUpperCase() + this.slice(1); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment