You cannot, unless you have a reference to timerwhat you have not, because you are declaring it as a variable in a scope. You can do something like:
myObject.timedAction = (function(){
return function(){
myObject.timedAction.timer = setTimeout(myObject.timedAction,1000);
};
})();
clearTimeout(myObject.timedAction.timer);
, . , .