Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 33c4149

Browse files
authoredSep 2, 2019
Merge pull request #1306 from paroche/patch-12
Update article.md
2 parents dbfe588 + d27e96c commit 33c4149

File tree

1 file changed

+1
-1
lines changed
  • 1-js/04-object-basics/06-constructor-new

1 file changed

+1
-1
lines changed
 

‎1-js/04-object-basics/06-constructor-new/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function User(name) {
5151
}
5252
```
5353

54-
So the result of `new User("Jack")` is the same object as:
54+
So `let user = new User("Jack")` gives the same result as:
5555

5656
```js
5757
let user = {

0 commit comments

Comments
 (0)
Please sign in to comment.