Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Amit Kumar

Amit Kumar

Amit Kumar has asked 0 questions and find answers to 2 problems.

Stats

63
EtPoint
27
Vote count
0
questions
2
answers

About

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;