Update article.md

Says "is the same object as:", but what's below is an assignment (that includes an object). I didn't have any problem understanding it, didn't even notice it at first, but I thought it would be more accurate this way without sacrificing clarity.
This commit is contained in:
paroche 2019-09-01 18:14:56 -06:00 committed by GitHub
parent c4d1987ebc
commit d27e96cec3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ function User(name) {
}
```
So the result of `new User("Jack")` is the same object as:
So `let user = new User("Jack")` gives the same result as:
```js
let user = {