首页 > 代码库 > js使用占位符替换字符串

js使用占位符替换字符串

js使用占位符替换字符串是一个ES6中的模版字符串语法。  在``中使用 ${}
var a = 5;var b = 10;console.log(`Fifteen is ${a + b} and not ${2 * a + b}.`);
Fifteen is 15 and not 20.

js使用占位符替换字符串