“javaScript wangize String” Ответ

javaScript wangize String

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

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

javaScript заработает первую букву

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

капитализируйте в JavaScript

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

к столичному делу JavaScript

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

javaScript заработает слова

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

Ответы похожие на “javaScript wangize String”

Вопросы похожие на “javaScript wangize String”

Смотреть популярные ответы по языку

Смотреть другие языки программирования