Advertisement
RandomGuy32

this

Oct 18th, 2019
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Entry {
  2.     // ...
  3.    
  4.     test() {
  5.         console.log(this);
  6.     }
  7. }
  8.  
  9. // ...
  10.  
  11. let entry = new Entry();
  12. let button = document.createElement("button");
  13. button.onclick = entry.test;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement