FMFelipe Martinez Albecheinfalbech.hashnode.dev路Apr 2, 2021 路 5 min readJS Pro Design Patterns - The Bridge PatternI have to confess that the way that this pattern was introduced in the book seemed a bit strange for me at the first sight. Especially because it is presented in three different contexts: as a wrapper to decouple function logic, as an encapsulation h...00
FMFelipe Martinez Albecheinfalbech.hashnode.dev路Mar 27, 2021 路 4 min readJS Pro Design Patterns - The Singleton PatternThe Singleton Pattern This is one of the most common and useful JavaScript patterns. Basically, it is used to group code in a logical unit that can be accessed through only one access point, one variable. We could make use of this technique when we ...01M
FMFelipe Martinez Albecheinfalbech.hashnode.dev路Mar 22, 2021 路 2 min readJS Pro Design Patterns SeriesHello folks! 馃憢 I am here to announce my brand new series about JavaScript design patterns... It has been a while since I wish to start my journey to improve my programming skills by exploring some well-known design patterns. Coincidence or not, rece...01F
FMFelipe Martinez Albecheinfalbech.hashnode.dev路Jan 6, 2021 路 5 min readJS Rewrited #01 - Array.map()Summary In this article, we will discuss what the Array.map function is, its usage, and recreate its behavior by creating a brand new custom function to get a deeper understanding of how it works in detail. The map function Usage Function rewriting ...00