function Ticker () { var ticks = 0; this.tick = function () { ticks++; } this.getTicks = funtion () { return ticks; } }