Funny.js, def wont steal your token or spam anoy you

class Funny{
  constructor(){
   this.whow = "whowie";
  }
  run(input='fsh'){
   this.invertal = setInterval(()=>{
    console.log(`${input} - ${Math.random()}`)
   },10);
   return "Ok running";
  }
  end(){
   clearInterval(this.invertal)
   return "ended"
  }
 }
  let whow = new Funny();
  whow.run(whow.whow)

comments