Please enable JavaScript.
Coggle requires JavaScript to display documents.
Design Pattern (in JS) - Coggle Diagram
Design Pattern (in JS)
-
Creational
-
Techniques that we can use to help us manage the creation of objects in our ever expanding and changing software environment
Have to due of class instanciations, the creation of object instances in the applications.
Definition
Defines
Reusable, reliable solutions to problem that we face every day in software development
Christopher Alexander: Each pattern describes a problem which occurs over and over again in our environment, and then describes the core of the solution to that problem, in such a way that you can use this solution a million times over, without ever doing it the same way twice.
-
-
-
-
-
-
-
Anti-pattern
-
-
In JS
-
-
Callback Chaos
readFile(..., () => { parseData(..., () => { wirteFile(..., () => {}) }) })