Skip to content

Instantly share code, notes, and snippets.

@corocoto
Created November 18, 2021 06:52
Show Gist options
  • Save corocoto/82dd366c3dbdfd2448f06cd148513ed2 to your computer and use it in GitHub Desktop.
Save corocoto/82dd366c3dbdfd2448f06cd148513ed2 to your computer and use it in GitHub Desktop.
Uppercase first letter for the words by regexp
'sHoRt AnD sToUt'.toLowerCase().replace(/(^\w{1})|(\s+\w{1})/g, letter => letter.toUpperCase())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment