function Timer() { this.showTime = function () { setInterval(function () { console.log(1); },1000); }(); } new Timer();