Vicente Lillo

Results 1 comments of Vicente Lillo

Very didactic implementation of `Object.fromEntries()`. Why not: ```js result[coercedKey] = value; ``` instead: ```js Object.defineProperty(result, coercedKey, { value, writable: true, enumerable: true, configurable: true, }); ``` Thanks.