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

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