You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/String/Convert a string into camel...

10 lines
367 B
JavaScript

camelize = function camelize(str) {
return str.replace(/\W+(.)/g, function(match, chr)
{
return chr.toUpperCase();
});
}
console.log(camelize("JavaScript Exercises"));
console.log(camelize("JavaScript exercises"));
console.log(camelize("JavaScriptExercises"));