4 lines
79 B
TypeScript
4 lines
79 B
TypeScript
const seconds = 1000 * 10;
|
|
setTimeout(() => {
|
|
console.log(200);
|
|
}, seconds);
|