We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 468e355 + 6b296c1 commit b9d5335Copy full SHA for b9d5335
1-js/04-object-basics/06-constructor-new/article.md
@@ -91,7 +91,7 @@ The syntax from this section is rarely used, skip it unless you want to know eve
91
92
Inside a function, we can check whether it was called with `new` or without it, using a special `new.target` property.
93
94
-It is empty for regular calls and equals the function if called with `new`:
+It is undefined for regular calls and equals the function if called with `new`:
95
96
```js run
97
function User() {
0 commit comments