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 の使用法は非常に似ています。それらの違いを知りたいのですが、上記の 2 つの getX 関数は同じですか?