“JS CamelCase” Réponses codées

Javascript à 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

Réponses similaires à “JS CamelCase”

Questions similaires à “JS CamelCase”

Plus de réponses similaires à “JS CamelCase” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code