“JS капитализирует первую букву каждого слова” Ответ

JavaScript Overscare Первая буква

//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 uppercare Первый символ каждого слова

const uppercaseWords = str => str.replace(/^(.)|\s+(.)/g, c => c.toUpperCase());

// Example
uppercaseWords('hello world');      // 'Hello World'
Batman

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

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

console.log(capitalizeFirstLetter('foo bar bag')); // Foo
Wrong Weasel

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

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

javaScript uppernact Первая буква каждого слова

const toTitleCase = (phrase) => {
  return phrase
    .toLowerCase()
    .split(' ')
    .map(word => word.charAt(0).toUpperCase() + word.slice(1))
    .join(' ');
};

let result = toTitleCase('maRy hAd a lIttLe LaMb');
console.log(result);
Jealous Jaguar

JS капитализирует первую букву каждого слова

const titleCase = title => title
    .split(/ /g).map(word =>
        `${word.substring(0,1).toUpperCase()}${word.substring(1)}`)
    .join(" ");
Proud Pygmy

Ответы похожие на “JS капитализирует первую букву каждого слова”

Вопросы похожие на “JS капитализирует первую букву каждого слова”

Больше похожих ответов на “JS капитализирует первую букву каждого слова” по JavaScript

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

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