Merge pull request #2214 from leviding/patch-29
FIX: delete extra space
This commit is contained in:
commit
3897d24e7e
2 changed files with 3 additions and 3 deletions
|
@ -198,8 +198,8 @@ alert(admin.fullName); // John Smith (*)
|
||||||
// setter triggers!
|
// setter triggers!
|
||||||
admin.fullName = "Alice Cooper"; // (**)
|
admin.fullName = "Alice Cooper"; // (**)
|
||||||
|
|
||||||
alert(admin.fullName); // Alice Cooper , state of admin modified
|
alert(admin.fullName); // Alice Cooper, state of admin modified
|
||||||
alert(user.fullName); // John Smith , state of user protected
|
alert(user.fullName); // John Smith, state of user protected
|
||||||
```
|
```
|
||||||
|
|
||||||
Here in the line `(*)` the property `admin.fullName` has a getter in the prototype `user`, so it is called. And in the line `(**)` the property has a setter in the prototype, so it is called.
|
Here in the line `(*)` the property `admin.fullName` has a getter in the prototype `user`, so it is called. And in the line `(**)` the property has a setter in the prototype, so it is called.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue