Prototype-Based

Prototype-Based programming is a style of object-oriented programming in which classes are not present, and behavior reuse is accomplished through a process of cloning existing objects that serve as prototypes. It is an alternative to class-based programming, which relies on the creation of classes to define objects and their behavior. More »