Hacker News new | ask | show | jobs
by iamstef 3921 days ago
I agree, async/await is very nice. Though it is worth pointing out async/await is quite literally syntactic sugar on top of promises. Essentially adding language syntax for common promise idioms.
1 comments

More than just syntactic sugar. async/await changes the whole control flow of a method.
You can actually get identical semantics, and almost identical syntax, by abusing ES6 generators, so it is just syntactic sugar: https://gist.github.com/callahad/b99c83d6d9fd675137b7
Does the phrase "syntactic sugar" have any meaning? Name a new language feature that "it is just syntactic sugar" can't be applied to.
Sure, ES6 WeakMap and WeakSet can't be implemented without native support in the runtime.

Or, for that matter, const. Though perhaps const is just syntatic sugar for not reassigning to the same darn name? ;)

Const is a pretty good example, the closest I can think to emulating it in es5 is something like:

Object.defineProperty(this, 'five', { enumerable: true, writable: false, value: 5, configurable: false });

If in global scope, 'five' will look like a const.

WeakMap and WeakSet have polyfills with minor caveats.

I guess you're defining language features as not "syntactic sugar" if they can't be absolutely 100% polyfilled.

Agreed, it's syntactic sugar over es6 generators. But I don't agree that it's just syntactic sugar over promises, which is what the parent comment asserted.
Yes, by introducing (extremely handy) syntactic sugar ;)