es6 tagged:
function foo(strings, ...values) {
console.log( strings );
console.log( values );
}
var desc = "awesome";
foo`Everything is ${desc}!`;
// [ "Everything is ", "!"]
// [ "awesome" ]
https://blog.csdn.net/kittyjie/article/details/50480236?utm_source=blogxgwz3
function foo(strings, ...values) {
console.log( strings );
console.log( values );
}
var desc = "awesome";
foo`Everything is ${desc}!`;
// [ "Everything is ", "!"]
// [ "awesome" ]
https://blog.csdn.net/kittyjie/article/details/50480236?utm_source=blogxgwz3