📜  在 js 中加入文本 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:32.840000             🧑  作者: Mango

代码示例1
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