Skip to content

Instantly share code, notes, and snippets.

@pastak
Created December 13, 2016 12:11
Show Gist options
  • Save pastak/75d3b36b4bd390335f7b2763efabfb10 to your computer and use it in GitHub Desktop.
Save pastak/75d3b36b4bd390335f7b2763efabfb10 to your computer and use it in GitHub Desktop.
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