call() 方法调用一个函数, 其具有一个指定的 this 值和分别地提供的参数(参数的列表)。
//语法:fun.call(thisArg,args…)
<script>
function f1(a, b) {
console.log(a + b);
console.log(this);
}
f1.call(null, 100, 200);
</script>
/参数:
1. thisArg
在函数运行时指定的 this 值
如果指定了 null 或者 undefined 则内部 this 指向 window
2.arg1, arg2, …
指定的参数列表
/