“JS CamelCase” Respostas de código

JavaScript para CamelCase

String.prototype.toCamelCase = function () {
	let STR = this.toLowerCase()
		.trim()
		.split(/[ -_]/g)
		.map(word => word.replace(word[0], word[0].toString().toUpperCase()))
		.join('');
	return STR.replace(STR[0], STR[0].toLowerCase());
};
5alidshammout

JS CamelCase

function toCamelCase(str) {
    return str
        .replace(/\s(.)/g, function($1) { return $1.toUpperCase(); })
        .replace(/\s/g, '')
        .replace(/^(.)/, function($1) { return $1.toLowerCase(); });
}
Worried Wolf

Respostas semelhantes a “JS CamelCase”

Perguntas semelhantes a “JS CamelCase”

Mais respostas relacionadas para “JS CamelCase” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código