Guest User

Untitled

a guest
Nov 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Foo {
  2. bar() {
  3. console.log('i am ', this);
  4. }
  5. }
  6.  
  7. const foo = new Foo();
  8. foo.bar(); // ---> i am Foo {}
  9. const { bar } = foo;
  10. bar(); // ----> i am undefined
Add Comment
Please, Sign In to add comment