Skip to content

HowProgrammingWorks/Mixin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Примеси в JavaScript

Примеси в JavaScript: mixin, extend, Object.assign, class λ-mixin

Tasks:

  • see examples
  • implement extend(obj, ...objects) so keys from objects will be mixed into obj only if it doesn't contain those keys
  • implement wrap(obj, ...funcs) so if obj contains func.name it should be wrapped
  • implement mixin logable()
  • implement universal equilateral mixin for for N sides (see 6-class.js)
  • implement emitable with Object.defineProperty (see 6-evants.js)
  • implement mixin for prototypes (not instances)
  • implement extend for mixins with additional override:Boolean flag
const mix2 = [
  {
    override: true,
    toString() {
      return `${this.name} - ${this.city} - ${this.born}`;
    }
  },
  {
    override: false,
    age() {
      const year = new Date().getFullYear();
      const born = new Date(this.born).getFullYear();
      return year - born;
    }
  }
];

extend(obj1, mix1, mix2);

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy