js async await sleep code example
Example 1: async sleep javascript
await new Promise(r => setTimeout(r, 2000));
Example 2: asyncio.sleep in javascript
let ms = 10000;
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, ms);
// exactly sleep in python or in bash