Y
Hacker News
new
|
ask
|
show
|
jobs
by
esailija
3697 days ago
async/await is tiny amount of sugar over generators and promises (virtually the only thing that changes is `yield` -> `await` and `function*` -> `async function`), not callbacks.