function add (x, y)
{
console.log (x + y);
}
function minus (x, y)
{
console.log (x - y);
}
add.call (minus , 1, 1); //2
以上的理解是就是用add来代替minus
如果有一个方法是A.call(B, x, y), 那么其实就是把A的函数放到B当中运行,x和y都是A方法的参数
用call还可以用来实现继承
function myfunc1(){
this.name = ‘Lee‘;
this.myTxt = function(txt) {
console.log( ‘i am‘,txt );
}
}
function myfunc2(){
myfunc1.call(this);
}
var myfunc3 = new myfunc2();
myfunc3.myTxt(‘Geing‘); // i am Geing
console.log (myfunc3.name); // Lee