“javascript capitaliser la chaîne” Réponses codées

javascript capitaliser la chaîne

//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

javascript en majuscules

var str = "Hello World!";
var res = str.toUpperCase();  //HELLO WORLD!
Batman

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

capitaliser dans JavaScript

const name = 'flavio'
const nameCapitalized = name.charAt(0).toUpperCase() + name.slice(1)
Anxious Anteater

à Capital Case JavaScript

const toCapitalCase = (string) => {
    return string.charAt(0).toUpperCase() + string.slice(1);
};
David Diamant

javascript capitaliser les mots

//Updated 
//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(); });
};
rabbit.sol

Réponses similaires à “javascript capitaliser la chaîne”

Questions similaires à “javascript capitaliser la chaîne”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code