第一题:
function f1(){
console.log('this is function f1!');
}
function f2(){
console.log('this is function f2!');
}
var f3 = f1.call;
f1.call(f2);
f3.call(f2);
第二题:
function fn(a,b){
console.log(this);
this.a=a;
this.b=b;
console.log(this.a+":"+this.b);
}
fn.call.call(fn,8,7);