var obj = {
x: 81,
getX: function() {
console.log( this.x)
}
};
var getX = obj.getX.bind(obj);//use obj as 'this';
getX();//81
var getX = function(){
obj.getX.apply(obj);
}
getX();//also 81
bind 和 call/apply 的使用看起来很像,我想知道它们有什么区别。上面的两个 getX 函数是一样的吗?