LANGUAGE » JAVASCRIPT

Node.js

Timers

Equivalent to sleep in other languages.

js
import { setTimeout } from 'node:timers/promises';

await setTimeout(1000);