“JS Première lettre à l'uppercase” Réponses codées

première lettre en majuscule javascript

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

JS Première lettre à l'uppercase

function capitalizeFirstLetter(name) {
    return name.replace(/^./, name[0].toUpperCase())
}
Combative Crayfish

Capitaliser le premier carater js

const capitalize = (s) => {
  if (typeof s !== 'string') return ''
  return s.charAt(0).toUpperCase() + s.slice(1)
}

capitalize('flavio') //'Flavio'
capitalize('f')      //'F'
capitalize(0)        //''
capitalize({})       //''
JavierMendozain

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

Réponses similaires à “JS Première lettre à l'uppercase”

Questions similaires à “JS Première lettre à l'uppercase”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code