April 17th, 2025
How is == Different from === in JavaScript
Pretty much everytime i need to compare two values(javascript), I end up comtemplating whether to use **===** or **==** > JavaScript has two sets of equality operators: === and !==, and their evil twins == and !=. The good ones( === & !== ) work the way you would expect. If the two values being comp...