Easy
JavaScript Comparison: Understanding the Difference Between == and === Operators
What is the difference between == and === in JavaScript?
1const a = "5";2const b = 5;34console.log(a == b); // true or false?5console.log(a === b); // true or false?