Skip to content Skip to sidebar Skip to footer
Showing posts with the label Design Patterns

Slight Variation Of The Revealing Module Pattern

Is it good practice to use, instead of this Revealing Module Pattern ... var MyModule = ( function(… Read more Slight Variation Of The Revealing Module Pattern

What Is The Functional Difference Between These Two Different Module Pattern Syntaxes

I see this syntax everywhere: var mod = (function(){ var pvtvar; var pvtfunc = function(){}; … Read more What Is The Functional Difference Between These Two Different Module Pattern Syntaxes

JavaScript Design Patterns: Abstract Factory Vs Concrete Factory

What is the difference between concrete factories and abstract factories? PS: I originally asked a … Read more JavaScript Design Patterns: Abstract Factory Vs Concrete Factory