Understanding Prototypes and Inheritance in Javascript
In this article, we will explain a concept that got me confused for a long time: Prototypes and Inheritance in Javascript. What are prototypes? How do they work?
In this article, we will explain a concept that got me confused for a long time: Prototypes and Inheritance in Javascript. What are prototypes? How do they work?
The COVID-19 crisis has brought remote working to an all-time high in the world. But with this new world order comes a new question: should workers be paid differently if they don’t live in the same area?
In this article, we will get started with code splitting in React. By using dynamic imports, React.lazy and Suspense, you can dramatically improve the performance of your application.
In this article, we will explain what the Higher-Order Functions in Javascript are all about. We will also start to explore composition.
In this article, we will understand what is an IIFE in Javascript and why you would want to use them.
In this article, we will build a very simple plugin with vanilla Javascript. This plugin will render a Calendar.
Let’s talk about a philosophy that changed a lot of things in my life: Stoicism.
The Dreyfus model of skill acquisition is used to access the level of development of competencies and skills of people who are learning something new.
Introduction Iframes are awesome! They allow you to embed another HTML page inside the current one. The embedded page carries its own browsing context with it. So, if a HTML page creates an iframe with a remote application as its source, you’ll have the first application hosting that remote application with all its functionalities. It’s a technique that’s used by a lot of companies to allow developers to use their service easily ( Stripe and Yousign come to mind)...
Configuring properly a Loopback 4 project that uses PostgresQL and setting up correctly the foreign keys appeared to be quite difficult for me. In this article, let’s explore how you could do it!