deno/tests/004_set_timeout.ts
Ryan Dahl 9dfebbc949
Fix eslint warnings (#2151)
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
2019-04-21 16:40:10 -04:00

12 lines
177 B
TypeScript

setTimeout((): void => {
console.log("World");
}, 10);
console.log("Hello");
const id = setTimeout((): void => {
console.log("Not printed");
}, 10000);
clearTimeout(id);