“Première lettre Tuuppercase” Réponses codées

JS Première lettre en majuscule

//capitalize only the first letter of the string. 
function capitalizeFirstLetter(string) {
    return string.charAt(0).toUpperCase() + string.slice(1);
}
//capitalize all words of a string. 
function capitalizeWords(string) {
    return string.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
};
Grepper

capitaliser la première lettre javascript

function capitalizeFirstLetter(string) {
  return string.charAt(0).toUpperCase() + string.slice(1);
}

console.log(capitalizeFirstLetter('foo bar bag')); // Foo
Wrong Weasel

javascript capitaliser la première lettre

const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
Helpless Horse

Première lettre Tuuppercase

const string = "tHIS STRING'S CAPITALISATION WILL BE FIXED."
const string = string[0].toUpperCase() + string.slice(1)
putsan

capitaliser la première lettre js

const string = "tHIS STRING'S CAPITALISATION WILL BE FIXED."
const string = string.charAt(0).toUpperCase() + string.slice(1)
QkeleQ10

Première lettre Tuuppercase

function capitalizeFirstLetter(string) {
    return string.charAt(0).toUpperCase() + string.slice(1);
}
ghanendra pratap

Réponses similaires à “Première lettre Tuuppercase”

Questions similaires à “Première lettre Tuuppercase”

Plus de réponses similaires à “Première lettre Tuuppercase” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code