Creational design patterns
Duration: 53:36
Created with
Ben Fhala
Ben Fhala is the creative force and founder behind 02geek, a pioneering platform dedicated to making web development accessible to everyone. With over 18 years of experience in the industry, Ben has a deep passion for teaching and a knack for breaking down complex concepts into easy-to-understand lessons.
Creational design patterns Overview
What you'll learn
In the first section of this title we will get to know what design patterns are and the logic that stands behind them. By the end of this section you will have a good grasp of the core JavaScript design patterns under your belt and clear understanding of the role that design patterns have in web development.
Singleton Design Pattern
- Delayed instantiation of an object. - A constant interface to gain access to the object. - Only one instance of the object is needed.
13:56
Factory Design Pattern
- When we need to have more control on customizing an item. - Removes the need for the implementing object to know how to implement. - Makes it easy to update and add more versions or updates of the
06:32
Abstract Factory Design Pattern
- When you need implementation of your factory to be more dynamic. - Only logical when it's expected to enable developers to extend functionality. - Avoid over complication when this usage is not n
10:04
Builder Design Pattern
- The jQuery $ method is a builder. - Multiple objects are needed. - Many steps are needed.
12:36
Builder Design Pattern Continued
- Fully integrating our builder into our Singleton. - See the builder in action. - Send you off to do some homework.
05:08
Prototype Design Pattern
- More efficient on memory to reuse methods. - Built in to the language capabilities. - Very easy to implement.
05:20