Skip to content

Instantly share code, notes, and snippets.

@vijjusri14
Created January 20, 2020 09:57
Show Gist options
  • Select an option

  • Save vijjusri14/4029829f548df1e3a1e615bfdad8b6a3 to your computer and use it in GitHub Desktop.

Select an option

Save vijjusri14/4029829f548df1e3a1e615bfdad8b6a3 to your computer and use it in GitHub Desktop.
Convert to camel case
CamelCase(str) {
return str.replace(/(?:^|\s)\w/g, match => match.toUpperCase());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment