String.prototype.camelCase=function(){ return this.split(/[ -_]/g).map(function(word){ return word.charAt(0).toUpperCase() + word.slice(1); }).join(''); }