//[js] 字符串相连有哪些方式?哪种最好?为什么? (() =>{ let a = "hello"; let b = "world"; let d = a + " " + b; console.log(d); let e = `${a} ${b}`; console.log(e); }) ();