“Присоединяйтесь к тексту JavaScript” Ответ

Присоединяйтесь к тексту в JS

const myText = "It is a long established fact that a reader will"
const newText = myText.split(" ").join("-")
console.log(newText);//It-is-a-long-established-fact-that-a-reader-will
Keerthan Chand

Присоединяйтесь к тексту JavaScript

const joinText = (string) => {
  const newText = string.replace(/\n/g, "");
};
console.log(joinText("Hello
                     World!"));
//Hello World!
mrmalik610

Ответы похожие на “Присоединяйтесь к тексту JavaScript”

Вопросы похожие на “Присоединяйтесь к тексту JavaScript”

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

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

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