JavaScript Mixins and Composition Lab
Medium
2
50.0% Acceptance
In this lab, you will practice using mixins and composition to share functionality between multiple classes in JavaScript. You will create mixins for swimmer
and runner
and then extend a Person
class with these mixins using the extend
function.