Created
May 24, 2014 02:02
-
-
Save maggiben/792cefb750a20dc8b2a1 to your computer and use it in GitHub Desktop.
spaces to camel case
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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