Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 133 Bytes

await-await.md

File metadata and controls

8 lines (8 loc) · 133 Bytes

@ katopz

What console log will print?

(async foo => console.log(await await foo))('bar')
  • "bar"
  • "Error"
  • "undefined"