Update article.md

Added "And".
This commit is contained in:
paroche 2019-10-01 21:49:34 -06:00 committed by GitHub
parent ec99b2c3bd
commit af6a921df8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -146,7 +146,7 @@ Although, there are important differences.
1. First, a function created by `class` is labelled by a special internal property `[[FunctionKind]]:"classConstructor"`. So it's not entirely the same as creating it manually.
Unlike a regular function, a class constructor must be called with `new`:
And unlike a regular function, a class constructor must be called with `new`:
```js run
class User {