Allen Wirfs-Brock (2013-10-15T23:03:20.000Z)
On Oct 15, 2013, at 3:19 PM, Dean Landolt wrote:

> 
> So just to be clear, the only way to add a __proto__ property to an existing object is with Object.defineProperty?
> 


Object.mixin(obj, {["__proto__"]:42});

Allen
domenic at domenicdenicola.com (2013-10-21T19:27:53.769Z)
On Oct 15, 2013, at 3:19 PM, Dean Landolt wrote:

> So just to be clear, the only way to add a `__proto__` property to an existing object is with `Object.defineProperty`?

```js
Object.mixin(obj, {["__proto__"]:42});
```