tone4ka,
или так
Car.prototype.intRight=function(){
setInterval(() => this.moveRight(10),30);
};
или так
Car.prototype.intRight=function(){
var self = this;
setInterval(function() {
self.moveRight(10)
},30);
};
или так
Car.prototype.intRight=function(){
setInterval(this.moveRight.bind(this, 10),30);
};