“Zeichenfolge zum Kapitalisieren von JavaScript” Code-Antworten

JavaScript nutzen Wörter

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

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

zum Kapitalfall JavaScript

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

JavaScript nutzen Wörter

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

Zeichenfolge zum Kapitalisieren von JavaScript

const str = 'flexiple';
const str2 = str.charAt(0).toUpperCase() + str.slice(1);
console.log(str2);

//Output: Flexiple

const str = 'abc efg';
const str2 = str.charAt(0).toUpperCase() + str.slice(1);
console.log(str2);

//Output: Abc efg
Inquisitive Ibis

Ähnliche Antworten wie “Zeichenfolge zum Kapitalisieren von JavaScript”

Fragen ähnlich wie “Zeichenfolge zum Kapitalisieren von JavaScript”

Weitere verwandte Antworten zu “Zeichenfolge zum Kapitalisieren von JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen