We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 33c4149 + 25bf9f5 commit 4d80823Copy full SHA for 4d80823
1-js/04-object-basics/06-constructor-new/article.md
@@ -27,7 +27,7 @@ alert(user.name); // Jack
27
alert(user.isAdmin); // false
28
```
29
30
-When a function is executed as `new User(...)`, it does the following steps:
+When a function is executed as `new Func(...)`, it does the following:
31
32
1. A new empty object is created and assigned to `this`.
33
2. The function body executes. Usually it modifies `this`, adds new properties to it.
0 commit comments