标签:anim 其他 bin ons nim OLE 函数 pre apply
let animal1 = {
type: "鼠",
eat(food) {
console.log(`${this.type}吃${food}`);
},
};
let animal2 = {
type: "猫",
};
animal1.eat("玉米"); //鼠吃玉米
animal1.eat.call(animal2, "鼠"); //猫吃鼠
animal1.eat.apply(animal2, ["鼠"]); //猫吃鼠
animal1.eat.bind(animal2, "鼠")(); //猫吃鼠
结论:call,apply,bind的第一个参数都是this,第二个参数都是其他参数,不同的是:
标签:anim 其他 bin ons nim OLE 函数 pre apply
原文地址:https://www.cnblogs.com/silent-cat/p/14170138.html