MikeRohsoft

Untitled

Apr 17th, 2022
944
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Something {
  2.   v;
  3.   static isSomething = true;
  4.   isNothing = false;
  5.   constructor(v) {
  6.     this.v = v;
  7.   }
  8.   static myMethod() {
  9.     return 1;
  10.   }
  11.   myOtherMethod() {
  12.     return 2;
  13.   }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment