Skip to content

Instantly share code, notes, and snippets.

@vasanthv
Created July 12, 2020 14:32
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 vasanthv/bf44dd4f35d0ab1ce2a9035b64607a85 to your computer and use it in GitHub Desktop.
Save vasanthv/bf44dd4f35d0ab1ce2a9035b64607a85 to your computer and use it in GitHub Desktop.
Captalize first letter of a string
const captilize = ([fL, ...rest]) => fL.toUpperCase()+rest.join("");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment