1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/testdata/004_set_timeout.ts

12 lines
165 B
TypeScript
Raw Normal View History

2018-06-04 02:59:02 -04:00
setTimeout(() => {
2018-05-18 11:49:28 -04:00
console.log("World");
}, 10);
console.log("Hello");
2018-06-04 02:59:02 -04:00
const id = setTimeout(() => {
console.log("Not printed");
}, 10000);
clearTimeout(id);