Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

camelcase

String.prototype.camelCase=function(){
   return this.split(/[ -_]/g).map(function(word){
    return word.charAt(0).toUpperCase() + word.slice(1);
  }).join('');
}
Source by deepmatter.ai #
 
PREVIOUS NEXT
Tagged: #camelcase
ADD COMMENT
Topic
Name
3+8 =