summaryrefslogtreecommitdiff
path: root/tests/010_set_interval.ts
blob: f58cc3fcd192ff3bb6e9b5273fcc35673b97f0a2 (plain)
1
2
3
4
5
6
7
const id = setInterval(function() {
  console.log("test");
}, 200);

setTimeout(function() {
  clearInterval(id);
}, 500);