I'm trying to define a Javascript class with a repeating function but I can't get it to work:
var Repeater = function() {
    this.init.apply(this, arguments);
};
Repeater.prototype = {
    run: 0, // how many runs
    interval: 5, // seconds
    init: function() {
        this.repeat();
    },
    repeat: function() {
        console.log(++this.run);
        setTimeout(this.repeat, this.interval * 1000);
    }
};
var repeater = new Repeater();
How should this be done?
 
     
     
     
    