We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d67c04c commit 9f5ff21Copy full SHA for 9f5ff21
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