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

setTimeout(() => {
  clearInterval(id);
}, 500);