Learn =, == and === in Javascript
In JavaScript, =, ==, and === are key operators used for assignment and comparison. = is used for assignment, == checks for equality with type coercion, and === checks for strict equality without type
What's Your Reaction?