Skip to content

Instantly share code, notes, and snippets.

@Rigel772
Created July 2, 2020 09:34
Show Gist options
  • Save Rigel772/5bfa7972283a060f7b29b839e8ef3290 to your computer and use it in GitHub Desktop.
Save Rigel772/5bfa7972283a060f7b29b839e8ef3290 to your computer and use it in GitHub Desktop.
[capitalize string] #js
const capitalize = (name) => {
name = name.toLowerCase();
return `${name.charAt(0).toUpperCase()}${name.slice(1)}`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment