Deployment

Deployment

Creating a To-do App with Node.js + Express and PostgreSQL database

A simple todo list app with Postgres database.

Read
Deployment

Build custom Modal Component in React.

Modals are one of the most vital component of UI elements on the web. they provides a solid foundation for creating dialogs, popover etc. In this article we will see how to build our own modal component in react. Here is the snapshot of how our modal component will look like.

Read
Deployment

Understanding ==, === and typeof in JavaScript

We all know that == and === are comparison operators in JavaScript, But == is the equality operator that converts the operands if they are not of the same type, before making the comparison. While the === is called the Identity/strict equality which return true if the operands are strictly equal.

Read
Deployment

The thing with JavaScript function and the new keyword

Functions are a collection of statement either named or unnamed that performs a task, and can be called from elsewhere within a JavaScript program

Read