Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>Simple Timer Sample</title>
</head>
<body>
  <h1>Simple Timer Sample</h1>
  <p>This is a timer sample, please open the console to watch the logs</p>
  <button onclick="resetTimer()">Reset timer</button>
</body>
</html>
 
var REFRESH_PERIOD_SECOND = 30;
var timer;
var counter = 0;
function startTimer() {
  console.log('start timer');
  timer = setInterval(function () {
    counter += 1;
    console.log(counter);
    if (counter >= REFRESH_PERIOD_SECOND) {
        // do something..
      resetTimer();
    } 
  }, 1000);
}
function resetTimer() {
  console.log('reset timer');
  stopTimer();
  startTimer();
}
function stopTimer() {
  console.log('stop timer');
  clearInterval(timer);
  counter = 0;
}
startTimer();
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers