Skip to content

Instantly share code, notes, and snippets.

@maggiben
Created May 24, 2014 02:02
Show Gist options
  • Save maggiben/792cefb750a20dc8b2a1 to your computer and use it in GitHub Desktop.
Save maggiben/792cefb750a20dc8b2a1 to your computer and use it in GitHub Desktop.
spaces to camel case
"my product name".replace(/\s+/g,'-').toLowerCase().replace(/-(.)/g, function(match, group1) {
return group1.toUpperCase();
});
// ---> myProductName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment