Hello, There is a question. How JS will bevave if we compare if (true == "true") and (0 == "0") ? Is there any other tricky convertions?
|
|
|
|
|
|
|
Type coercion aware operators (== and !=) can yield some wierd results:
The === and !== strict equality operators are always preferred. |
||
|
|
|
|
When using == or != if the types of the two expressions are different it will attempt to convert them to string, number, or Boolean etc However you can use the identity comparison === or !== where no type conversion is done, and the types must be the same to be considered equal. |
|||
|
|
