class.js 175 B

1234567891011
  1. class A {
  2. method() {
  3. var x = 1;
  4. while(typeof x == "number" || typeof x == "string") {
  5. x = x + 1;
  6. if (true) x = "";
  7. }
  8. var z:number = x;
  9. }
  10. }