...

/

Types of Design Patterns

Types of Design Patterns

This lesson takes a look at the types of design patterns such as creational, structural, behavioral, and architectural design patterns.

In the previous lesson, you learned what design patterns are. Now, we’ll look at some popular design patterns in JavaScript. These include the following:

Creational design patterns

These patterns are used to provide a mechanism for creating objects in a specific situation without revealing the creation method. The normal approach for creating an object might ...