Skip to content

Instantly share code, notes, and snippets.

@daKmoR
Created February 18, 2020 12:24
Show Gist options
  • Save daKmoR/dc8bcc5d58fa2896f804a76893dfbb39 to your computer and use it in GitHub Desktop.
Save daKmoR/dc8bcc5d58fa2896f804a76893dfbb39 to your computer and use it in GitHub Desktop.
Markdium-What is a Mixin?
// defining the Mixin
export const LoggingMixin = superclass =>
class LoggingMixin extends superclass {
// logging logic
};
class Page {}
// applying a Mixin
class PageRed extends LoggingMixin(Page) {}
class PageGreen extends LoggingMixin(Page) {}
class PageBlue extends Page {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment