const EventEmitter = require('events') // 司会者 class Presenter extends EventEmitter { constructor (personName, quizes) { super() this._personName = personName this._quizes = quizes console.log(`司会を務めさせて頂きます、"${personName}"です。`) } get personName () { return this._personName } // 発言 _say (text) { console.log(`${this.personName}「${text}」`) } } // クイズ解答者 class Player { constructor (entryName, thinkMs)
