Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1-js/04-object-basics/06-constructor-new/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The constructor can't be called again, because it is not saved anywhere, just cr

Inside a function, we can check whether it was called with `new` or without it, using a special `new.target` property.

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`:

```js run
function User() {
Expand Down