Guest User

Untitled

a guest
Nov 14th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class A {
  2. static color = "red";
  3. counter = 0;
  4.  
  5. handleClick = () => {
  6. this.counter++;
  7. }
  8.  
  9. handleLongClick() {
  10. this.counter++;
  11. }
  12. }
Add Comment
Please, Sign In to add comment