function Channel(name) { this.name = name this.userlist = [] this.join = function(user) { let channel = this this.userlist.push(user) this.userlist.forEach(function(item) { item.sendRaw(`:${user.nickname} JOIN ${channel.name}`) }) } } module.exports = Channel