deno/tests/010_set_interval.ts

8 lines
123 B
TypeScript
Raw Normal View History

const id = setInterval(function() {
2018-08-16 15:28:02 +00:00
console.log("test");
}, 200);
setTimeout(function() {
2018-08-16 15:28:02 +00:00
clearInterval(id);
}, 500);