“zum Kapitalfall JavaScript” Code-Antworten

JavaScript Kapitalisierung Zeichenfolge

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

Großbuchstaben JavaScript

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

Nutzen Sie JavaScript

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

Geben Sie den ersten Buchstaben des String JavaScript in Großbuchstaben zurück

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

console.log(capitalizeFirstLetter('foo')); // Foo
Xerothermic Xenomorph

zum Kapitalfall JavaScript

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

JavaScript tokapitalisieren

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

Ähnliche Antworten wie “zum Kapitalfall JavaScript”

Fragen ähnlich wie “zum Kapitalfall JavaScript”

Weitere verwandte Antworten zu “zum Kapitalfall JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen