Allen Wirfs-Brock (2015-04-11T02:59:40.000Z)
> On Apr 10, 2015, at 10:54 PM, Allen Wirfs-Brock <allen at wirfs-brock.com> wrote:
>> 
> 
> note totally true:

err, “not"
> 
> ```js
> class SubArray extends Array {
>    constructor(…args) {
>       let newObj = new Array(…args);
>       newObj.__proto__ = SubArray.prototype;  //or new.target.prototype
>       return newObj
>     }
>     subclassMethiod() {}
> }
> ```
> 
> Allen
d at domenic.me (2015-04-19T23:39:32.372Z)
(typo fix already fixed inline above)