“javaScript строка правильный корпус” Ответ

Титульный случай JavaScript

function titleCase(str) {
    return str
        .split(' ')
        .map((word) => word[0].toUpperCase() + word.slice(1).toLowerCase())
        .join(' ');
}
console.log(titleCase("I'm a little tea pot")); // I'm A Little tea Pot
Fancy Flatworm

string to title case javascript

function titleCase(sentence) {
  let sentence = string.toLowerCase().split(" ");
  for (let i = 0; i < sentence.length; i++) {
    sentence[i] = sentence[i][0].toUpperCase() + sentence[i].slice(1);
  }
  
  return sentence.join(" ");
}
Rootsteps

javaScript заголовок строки

function toTitles(s){ return s.replace(/\w\S*/g, function(t) { return t.charAt(0).toUpperCase() + t.substr(1).toLowerCase(); }); }
var str = toTitles('abraham lincoln'); // Abraham Lincoln
Spotless Stoat

javaScript строка правильный корпус

function toTitleCase(str) {
  return str.replace(
    /\w\S*/g,
    function(txt) {
      return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
    }
  );
}
// example
toTitleCase("the pains and gains of self study");
// "The Pains And Gains Of Self Study"
Worrisome Wallaby

Ответы похожие на “javaScript строка правильный корпус”

Вопросы похожие на “javaScript строка правильный корпус”

Больше похожих ответов на “javaScript строка правильный корпус” по JavaScript

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

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