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.
ReadFunctions are a collection of statement either named or unnamed that performs a task, and can be called from elsewhere within a JavaScript program
Read