-
-
Save pastak/75d3b36b4bd390335f7b2763efabfb10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const test = async () => { | |
const ms = 1000 | |
const start = Date.now() | |
const n = await new Promise((ok) => setTimeout(() => ok(ms), ms)) | |
console.log(n, n === ms, Date.now() - start) | |
} | |
test() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment