JavaScript Equality Operators
Boolean values are converted to numbers before comparisons are made with the equal operator (==) and not equal operator (!=). Comparisons where one operand is a string and the other is a number converts the string to a number first. If one of the operands is an object and not the other then the object […]
JavaScript Equality Operators Read More »

