Kashif Hussain Pathankashifhussainpathan.hashnode.dev·Feb 14, 2023Loose Equality Vs Strict Equality in JavaScriptWhat are '==' and '===' in JavaScript ? In Javascript, to compare two values, we use comparison operators. There exists a special case of comparison where two values are compared and decided whether the values are equal (or unequal). In that case, we...41 reads== vs === in js
Shirshak Mauryashirshak.hashnode.dev·Feb 13, 2023Understanding the difference between '==' and '===' in JavascriptIn javascript, we have two types of equality operators, '==' and '===' both of these can be used for comparisons, but there is a slight difference. The '==' operator (loose equality) The '==' double equal or loose equality operator compares the value...1 like·43 readsJavaScript