“Первая буква в верхней части 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 Первая буква строчная строка

// for lowercase on first letter
let s = "This is my string"
let lowerCaseFirst = s.charAt(0).toLowerCase() + s.slice(1)
Sleepy Stag

Первая буква в верхней части JS

function ucwords (str) {
  return (str + '').replace(/^([a-z])|\s+([a-z])/g, function ($1) {
    return $1.toUpperCase();
  });
}

console.log(ucwords("hello world"));
Beautiful Bug

Ответы похожие на “Первая буква в верхней части JS”

Вопросы похожие на “Первая буква в верхней части JS”

Больше похожих ответов на “Первая буква в верхней части JS” по JavaScript

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

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