Amit Kumar

452
reputation
4
10
class AboutME {
  constructor(myself = "Amit Kumar") {
    this.myself = myself;
    this.modeActive = false;
  }

  ByNight() {
    console.log('Ninja mode on...');
    this.modeActive = "**A WEB NINJA**";
  }
}

typeof AboutME;