“Junte -se ao texto JavaScript” Respostas de código

Junte -se ao texto em 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

Junte -se ao texto JavaScript

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

Respostas semelhantes a “Junte -se ao texto JavaScript”

Perguntas semelhantes a “Junte -se ao texto JavaScript”

Mais respostas relacionadas para “Junte -se ao texto JavaScript” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código