Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. const o = {
  2. foo: function() { return this.bar },
  3. bar: 10
  4. };
  5.  
  6. const f = o.foo;
  7. console.log(f()); // ??
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement