codice:
...
   var _self = this;

   this.tm = setInterval(function() {
      _self.changeValue();
   },speed);

}
...

oppure

codice:
...
   this.tm = (function(_self) {
       return setInterval(function() {
         _self.changeValue();
      },speed);
   })(this);
...