On Wed, Mar 4, 2015 at 2:13 PM, Matthew Robb <[email protected]> wrote:
> var x = {}; X.call(x);
Sorry this should have read:
```
var x = Object.create(X.prototype); X.call(x);
```
- Matthew Robb
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

