dash icon indicating copy to clipboard operation
dash copied to clipboard

Key `__proto__` in object literal is treated as an ordinary property

Open y21 opened this issue 1 year ago • 0 comments

... when it should be treated as setting its internal prototype slot. E.g.

let b = { __proto__: null };
console.log(b.__proto__); // not null!!

y21 avatar Aug 01 '23 16:08 y21