“JavaScript Kapitalisierung Zeichenfolge” 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

JavaScript nutzen den ersten Brief

const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
Helpless Horse

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

Ähnliche Antworten wie “JavaScript Kapitalisierung Zeichenfolge”

Fragen ähnlich wie “JavaScript Kapitalisierung Zeichenfolge”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen