Skip to content

Instantly share code, notes, and snippets.

@ms314006
Created March 7, 2023 05: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 ms314006/6432aa2d96df8592ea27fa0c2624a35e to your computer and use it in GitHub Desktop.
Save ms314006/6432aa2d96df8592ea27fa0c2624a35e to your computer and use it in GitHub Desktop.
const toUpperCase = (str) => str.toUpperCase();
const getFirstLetter = (str) => str[0] || '';
const getCapitalFirstLetter = (str) => getFirstLetter(toUpperCase(str));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment