📌  相关文章
📜  在 javascript 代码示例中不使用 + 将变量添加到字符串

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

代码示例1
let a = 5;
let b = 10;
console.log(`The sum of a and b is ${a+b} and the multiplication is ${a*b}`); 
// The sum of a and b is 15 and the multiplication is 50