Saqibiamsaqib.hashnode.dev·Dec 12, 2023Equality Comparisons in JavaScriptIn JavaScript, there are several kinds of equality. If you’ve been writing JavaScript for a while, you’re probably familiar with at least two of them: Strict Equality: a === b (triple equals). Loose Equality: a == b (double equals). Same Value Equ...loose vs strict equality
Prachi Sahuprachiblogs.hashnode.dev·Feb 24, 2023Difference between Loose equality (==) and Strict equality(===)While using the equality operator in javascript. We usually have two options that are to either use Loose equality (==) or to use Strict equality (===). But making choice hastily without knowing the exact behavior of both can lead to unexpected behav...14 likesLoose equality operator