Advertisement
nikolayneykov

Untitled

May 29th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Cat {
  2.   constructor () {
  3.     this.contextProperty = console.log(this)
  4.   }
  5.  
  6.   contextFunction () {
  7.     console.log(this)
  8.   }
  9. }
  10.  
  11. let myCat = new Cat()
  12. myCat.contextProperty
  13. myCat.contextFunction()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement