Dimitrian Nine (2018-02-25T08:47:43.000Z)
([Classes][1]):
[1]:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes
«JavaScript classes, introduced in ECMAScript 2015, are primarily
syntactical sugar over JavaScript's existing prototype-based inheritance.
The class syntax does not introduce a new object-oriented inheritance model
to JavaScript»
«Classes are in fact "special functions"»

```js class = function Create(); ```
all i want:
``` js async class = async function Create(); ```
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20180225/351193f4/attachment.html>
dimtimeforever at gmail.com (2018-02-25T08:51:35.942Z)
«[Classes][1], introduced in ECMAScript 2015, are primarily
syntactical sugar over JavaScript's existing prototype-based inheritance.
The class syntax does not introduce a new object-oriented inheritance model
to JavaScript»
«Classes are in fact "special functions"»

```js
class = function Create(); 
```
all i want:
``` js 
async class = async function Create(); 
```
[1]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes