I have an object with a method that will be passed to requestAnimationFrame. At the moment I create the object than reassign the method with an arrow function it returns.
var player={fn:function(){return ()=>{game.circle(this.x,this.y,this.radius)}},
x:200,y:300,radius:20};
player.fn=player.fn();
Can this be done without the reassigning the method after creating the object?
You could just use a static reference to
player
instead:But no, otherwise there's no way to write this without a separate assignment. Usually you however would just
bind
or use the arrow function when callingrequestAnimationFrame
: