Difference between == VS ===
const Num1 = 1;
const Num2 = 1;
console.log(Num1 == Num2); //output is true
console.log(Num1 === Num2); // output is true
💡 Now you will say, What’s new in this!!!!
**const Num1 = 1;
const string = “1”; // string is here
console.log(Num1 == Num2); ...
shabrezdev.hashnode.dev1 min read