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