Hacker News new | ask | show | jobs
by callahad 3930 days ago
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? ;)

1 comments

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.