Posts
Browse all articles about JavaScript, React, TypeScript, and web development.
The Facade Design Pattern in JavaScript
June 11, 2022
In this post we will be going over the Facade Design Pattern and see how it is an effective solution to encapsulate complexity.
The Power of Iterator Design Pattern in JavaScript
May 28, 2022
In this post we will be going over the Iterator Design Pattern in JavaScript and implement one hands-on. We will learn why a different algorithm becomes necessary when developing
The Bridge Design Pattern in JavaScript
April 25, 2022
In this article we will be going over the Bridge Design Pattern in JavaScript. This is one of the top used patterns that make a significant impact in software applications. It is a pattern that easily promotes a separation of concerns in its implementation and it's scalable
The Power of Template Design Pattern in JavaScript
April 17, 2022
This post will go over the Template Design Pattern in JavaScript. We will understand more in detail the approach of this pattern and one scenario of when we should use it. We will also see a diagram of how the the structure look like "outside the box". And finally, we will implement the pattern in code so that by the end of this article you will be comfortable about templating in JavaScript.
The Power of Strategy Design Pattern in JavaScript
April 10, 2022
In this post, we will be going over the Strategy Design Pattern. This is a well known pattern that encapsulates one or more strategies or algorithms to do a task.
The Power of Memento Design Pattern in JavaScript
April 6, 2022
The Memento Pattern in programming is useful in situations where we need a way to restore an object's state. In this post we are going to implement the Memento pattern for the runtime and will not be storing anything statically.
State Design Pattern in JavaScript
April 4, 2022
The State Pattern ensures an object to behave in a predictable, coordinated way depending on the current "state" of the application. This post will reveal the power of the state design pattrn in javascript
The Power of Proxy Pattern in JavaScript
April 2, 2022
In this post we will be going over the power of the Proxy Design Pattern in JavaScript and go over several examples of how beneficial it can become for your next application.
7 JavaScript Code Practices Your Teammates Will Love You For
March 29, 2022
This post will go over 7 JavaScript Code Practices Your Teammates Will Love You For. The tips in this post are coming from my opinions and experiences as a Team Lead Full Stack Engineer with more of a focus on the Front End side of things, so I assure you that these tips can help you become more valuable as a teammate and they work.
8 JavaScript Libraries Built From Scratch
March 27, 2022
In this post, we will be listing 8 JavaScript libraries that were built from scratch.
11 JavaScript Examples to Source Code That Reveal Design Patterns In Use
March 20, 2022
This post will go over several source codes in the JavaScript world that you can look at to find some inspiration, answers, or even as a learning experience so that you can speed up your pace in learning the advanced coding techniques without feeling alone.
The Power of Factory Design Pattern in JavaScript
March 18, 2022
In this post we will be going over the Power of Factory Design Pattern in JavaScript, which is one way to break a complex object apart into simpler objects to avoid unnecessary complexity when the opportunity arrives. Keep in mind that we're going to follow the DRY principle as a best practice.