Skip to content

Instantly share code, notes, and snippets.

@pecuchet
Created May 4, 2021 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pecuchet/de6d22b5778c7627d23a1102119b466c to your computer and use it in GitHub Desktop.
Save pecuchet/de6d22b5778c7627d23a1102119b466c to your computer and use it in GitHub Desktop.
Capitalize a string in js
export const capitalize = str => str.charAt(0).toUpperCase() + str.slice(1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment