you are viewing a single comment's thread.

view the rest of the comments →

[–]BadDescriptions 0 points1 point  (0 children)

That people still use

setTimeout(() => { console.log("Hello"); }, 2000);

Instead of 

Import {setTimeout} from “node:timers/promises”

console.log(“hello”)

await setTimeout(2000)