5 ms·
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 languag
by iamstef 11y 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.
- bluepnume 11y agoMore than just syntactic sugar. async/await changes the whole control flow of a method.
- callahad 11y agoYou 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 https://gist.github.com/callahad/b99c83d6d9fd675137b7
- conical 11y agoDoes the phrase "syntactic sugar" have any meaning? Name a new language feature that "it is just syntactic sugar" can't be applied to.
- callahad 11y agoSure, 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? ;)
- conical 11y agoConst 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.
- bluepnume 11y agoAgreed, 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.
- iamstef 11y agoYes, by introducing (extremely handy) syntactic sugar ;)