Guest User

Untitled

a guest
Sep 14th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class Wrapper {
  2. property = 'test';
  3.  
  4. nestedObj = {
  5. get wrapperProperty() {
  6. return this.property; // Error: this.property is undefined
  7. }
  8. }
  9. }
  10.  
  11. nestedObj = {
  12. wrapperProperty: () => this.property
  13. }
Add Comment
Please, Sign In to add comment