Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <h2 class='stopwatch'>0</h2>
  <button class='btn-toggle'>Start</button>
</body>
</html>
 
var i = 0,
    timer;
document.querySelector('.btn-toggle').addEventListener('click', start, false);
function start() {
  timer = setInterval(increment, 1);
  document.querySelector('.btn-toggle').innerHTML = 'Pause';
  
}
function increment() {
  i++;
  document.querySelector('.stopwatch').innerHTML = i/1000;
}
function stop() {
  clearInterval(timer);
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers