考虑以下代码:
<script>
alert`1` // outputs 1
</script>
或
<script>
function f($a) {
alert($a);
}
f`2`; // outputs 2
</script>
为什么JavaScript允许使用而不是()
来调用函数?
诸如https://www.w3schools.com/jsref/jsref_operators.asp之类的参考文献都没有提及``。
还可以用来调用带有多个参数的函数吗?如果可以,怎么办?