Skip to content

Instantly share code, notes, and snippets.

@mmloveaa
Last active April 7, 2016 05:55
Show Gist options
  • Save mmloveaa/9a71d88d67a1f59b226903b91f34ae41 to your computer and use it in GitHub Desktop.
Save mmloveaa/9a71d88d67a1f59b226903b91f34ae41 to your computer and use it in GitHub Desktop.
4-6- Monkey Patching
String.prototype.snakesToCamels = function(){
console.log(this);
var someString = this.toLowerCase().split('_');
return someString.reduce(function(a,b,index){
if(index===0){
return a+b
} else
{
return a+b[0].toUpperCase()+b.slice(1);
}
},"");
}
"Will_is_the_greatest".snakesToCamels();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment