We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4514ebc + 9f5ff21 commit 08c3e0dCopy full SHA for 08c3e0d
1 file changed
1-js/04-object-basics/06-constructor-new/article.md
@@ -89,7 +89,7 @@ The constructor can't be called again, because it is not saved anywhere, just cr
89
90
Inside a function, we can check whether it was called with `new` or without it, using a special `new.target` property.
91
92
-It is empty for regulsar calls and equals the function if called with `new`:
+It is empty for regular calls and equals the function if called with `new`:
93
94
```js run
95
function User() {
0 commit comments