Skip to content

Instantly share code, notes, and snippets.

@yurenju
Created May 3, 2018 13:48
Show Gist options
  • Select an option

  • Save yurenju/552e1e18155fdf65ecadffa01ccbebbd to your computer and use it in GitHub Desktop.

Select an option

Save yurenju/552e1e18155fdf65ecadffa01ccbebbd to your computer and use it in GitHub Desktop.
class MeetupEvent {
constructor(title, limit) {
this.title = title;
this.limit = limit
this.attendees = [];
}
register(member) {
if (this.attendees.length < limit) {
this.attendees.push(member);
} else {
throw new Error('ended');
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment