SyntaxFix
Write A Post
Hire A Developer
Questions
This is the reason why you should whenever possible use strict equality === or strict inequality !==
===
!==
"100" == 100
true because this only checks value, not the data type
true
"100" === 100
false this checks value and data type
false