Skip to main content
๐Ÿ› Bug HuntJS JavaScript Medium+20 XP

Equality Check Bug

This comparison always returns false even for matching values.

๐Ÿ› Find the bug
1function isEqual(a, b) {
2 if (a = b) {
3 return true;
4 }
5 return false;
6}
๐Ÿ› The bug is on line 2

๐Ÿ”ง Select the correct fix:

Priygop - Leading Professional Development Platform | Expert Courses & Interview Prep