Are the following examples the same? Is there any reason to extend Object manually?
```js
class Foo {
constructor() {}
}
new Foo
```
```js
class Foo extends Object {
constructor() { super() } // super() is required.
}
new Foo
```
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

