JavaScript Basic Decorator Pattern


/ Published in: JavaScript
Save to your folder(s)

In this section we're going to explore the decorator - a structural design pattern that promotes code reuse and is a flexible alternative to subclassing. This pattern is also useful for modifying existing systems where you may wish to add additional features to objects without the need to change the underlying code that uses them.

Traditionally, the decorator is defined as a design pattern that allows behavior to be added to an existing object dynamically. The idea is that the decoration itself isn't essential to the base functionality of an object otherwise it would be baked into the 'superclass' object itself.

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.