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;