使用模板文字调用函数。这是如何运作的?

时间:2019-04-04 08:14:13

标签: javascript

我一直认为您必须使用()在javascript中调用一个函数。例如myFunction()

但是我最近发现您可以使用

来调用函数
myFunction`someString`

我只是想知道这叫什么,所以我可以进一步研究吗?

function myFunction(x) {
console.log(x)
// This outputs an array of arguments, with the literal string at 0.
}


myFunction`
Hello!
This is pretty cool;
`;

0 个答案:

没有答案