dash
dash copied to clipboard
Key `__proto__` in object literal is treated as an ordinary property
... when it should be treated as setting its internal prototype slot. E.g.
let b = { __proto__: null };
console.log(b.__proto__); // not null!!