Skip to content

下面会输出什么?

Posted on:2022年1月9日 at 12:51
const person = { name: "Lydia" };

function sayHi(age) {
  console.log(`${this.name} is ${age}`);
}

sayHi.call(person, 21);
sayHi.bind(person, 21);

使用这两种方法,我们都可以传递我们希望 this 关键字引用的对象。但是,.call立即执行的。 .bind 返回函数的副本,但带有绑定上下文!它不是立即执行的。

原文转自:https://fe.ecool.fun/topic/e39e2c86-5e5d-4412-907b-e40d98fbfb4c