“affaire de chameau” Réponses codées

affaire de chameau

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

affaire de chameau

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

Convertir un boîtier de chameau en chaîne

convert camel case to string
Auuntoo

Réponses similaires à “affaire de chameau”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code