consistent error output comments

This commit is contained in:
Saiyn Dembirel 2019-11-07 17:19:38 +07:00
parent 88cd022adc
commit 8ab07e1e32
2 changed files with 2 additions and 2 deletions

View file

@ -19,5 +19,5 @@ function wrap(target) {
user = wrap(user);
alert(user.name); // John
alert(user.age); // ReferenceError: Property doesn't exist
alert(user.age); // ReferenceError: Property doesn't exist "age"
```