“Tocapitalize JavaScript” Kod odpowiedzi

JS Pierwsza litera

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

Ciąg wielki w JS

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

Kapitalizuj w JavaScript

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

do Capital Case JavaScript

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

Tocapitalize JavaScript

const capitalizeText = (text) =>{
    return text.toLowerCase().charAt(0).toUpperCase()+(text.slice(1).toLowerCase())
}
Evil Elephant

JS kapitalizuj

const capitalize = s => s && s[0].toUpperCase() + s.slice(1)

// to always return type string event when s may be falsy other than empty-string
const capitalize = s => (s && s[0].toUpperCase() + s.slice(1)) || ""
Defiant Dragonfly

Odpowiedzi podobne do “Tocapitalize JavaScript”

Pytania podobne do “Tocapitalize JavaScript”

Więcej pokrewnych odpowiedzi na “Tocapitalize JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu