top.on('click', function(){
anim.run();
});
I have an anim function, and was wondering why I can't call it like this
top.on('click', anim.run);
top.on('click', function(){
anim.run();
});
I have an anim function, and was wondering why I can't call it like this
top.on('click', anim.run);
Because this
is not anim
in the second case as you're retrieving the run
function and not calling it from anim
.
For example:
var a = {
b: function () {
return this.c;
},
c: 1
},
c = 2;
a.b() === 1;
var bMethod = a.b;
bMethod() === 2;