Skip to content

Instantly share code, notes, and snippets.

@Asraf2asif
Last active January 1, 2023 17:09
Show Gist options
  • Save Asraf2asif/69ec9443a97b7bc3dbc05d593716bc8e to your computer and use it in GitHub Desktop.
Save Asraf2asif/69ec9443a97b7bc3dbc05d593716bc8e to your computer and use it in GitHub Desktop.
Additional JS String Case
export const capitalCase = (str) =>
str &&
str.toString().charAt(0).toUpperCase()
+ str.toString().slice(1).toLowerCase();
export const properCase = (str) =>
str &&
str
.toString()
.split(' ')
.map((word) => capitalCase(word))
.join(' ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment