function fn1() {
console.log(1)
}
function fn2() {
console.log(2)
fn1.call(fn2); //输出1
fn1.call.call(fn2);//输出2,不是很明白,求解释
相关分类