📜  mdn 绑定 - Javascript 代码示例

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

代码示例1
this.x = 9;
const module = {
  x: 81,
  getX: function() { return this.x; }
};

module.getX(); // 81

const getX = module.getX;
getX(); // 9, porque en este caso, "this" apunta al objeto global

// Crear una nueva función con 'this' asociado al objeto original 'module'
const boundGetX = getX.bind(module);
boundGetX(); // 81