Skip to content

Clarification on a matter of using multiple mixins #3662

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions 1-js/09-classes/07-mixins/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ That's because methods `sayHi` and `sayBye` were initially created in `sayHiMixi

As `super` looks for parent methods in `[[HomeObject]].[[Prototype]]`, that means it searches `sayHiMixin.[[Prototype]]`.

It is worth noting that it would be illegal to write `new User("Dude").say()` as `say` that comes from `sayMixin` doesn't reside in a prototype chain of the `User` class. For this to work though, you should copy methods from each mixin separately like so: `Object.assign(User.prototype, sayMixin, sayHiMixin);`

## EventMixin

Now let's make a mixin for real life.
Expand Down