What do you think of this web app I’m making?(bigtimer.net)

almost 6 years ago from Koos Looijesteijn, Everything design and web at ForTomorrow

  • Derek KnoxDerek Knox, almost 6 years ago

    Here's a quick sample. You can paste this in the dev console of a browser to see it in action: var i = 60; function tick() { window.document.title = 'Time: ' + i--; } setInterval(tick, 1000);

    1 point