Template Literals

模板字面量,旧称 template strings,相比 strings

var name = "Ivan Yan"
var str = `hello
${name}
`

资料