Understanding the difference between '==' and '===' in Javascript
Feb 13, 2023 · 3 min read · In 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...
Join discussion