Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ({
  2. foo: function (component) {
  3. console.log(this.bar); // <-- undefined
  4. window.setTimeout(function () {
  5. this.bar(someValue);
  6. }, 12345);
  7. },
  8. bar: function (someArgument) {
  9. console.log("bar"); // <-- not called
  10. }
  11. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement