Browse all articles about JavaScript, React, TypeScript, and web development.
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
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.
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.
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.
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
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.
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.
March 27, 2022
In this post, we will be listing 8 JavaScript libraries that were built from scratch.
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.
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.
March 10, 2022
In todays world working smart is the way to go. This post will go over 10 JavaScript and NodeJS Tips that Knock Away Multiple Concepts with One Stone Each.
March 6, 2022
In this post we will go over the parts of the fetch api that is just enough to get you very far in your development career. You don't need to understand everything about fetch in order to succeed. You just need the understand the parts you will be asked to do in your projects.