摘要: //[js] 字符串相连有哪些方式?哪种最好?为什么? (() =>{ let a = "hello"; let b = "world"; let d = a + " " + b; console.log(d); let e = `${a} ${b}`; console.log(e); }) (); 阅读全文
posted @ 2022-01-07 10:28 Mr、DIVE 阅读(14) 评论(0) 推荐(0) 编辑