I need your help.
I have 2 functions:
addMoveListeners: function(e) {
e = e || window.event;
// Binging context to function move
moveListener =
You cannot. [[BoundThis]]
is an internal property of bound function objects. It is not programmatically accessible.
You might be able to view it with inspection of the object via console, but to use it in your program logic you will need to write your own version of bind
that exposes this value as a property.