til

ES6 Template Literals

可以很方便地在字符串里换行、插入变量和函数

let name = "Batur";

function play() {
    return 9
}

let template = 
    `<h1>hello ${name}</h1>
    <p>Your lucky number is ${play()}<p>
    <p>Let's learn javascript</p>`