📜  js 类方法中的 this - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:26.987000             🧑  作者: Mango

代码示例1
function add(c, d) {
  return this.a + this.b + c + d;
}

var o = {a: 1, b: 3};

// The first parameter is the object to use as
// 'this', subsequent parameters are passed as
// arguments in the function call
add.call(o, 5, 7); // 16

// The first parameter is the object to use as
// 'this', the second is an array whose
// members are used as the arguments in the function call
add.apply(o, [10, 20]); // 34