module.exports = class Employee { constructor(name, city) { this.name = name || 'Névtelen'; this.city = city || 'Ismeretlen'; } }