Echo JS 0.11.0

<~>

floriancargoet 4172 days ago. link 2 points
-0 and +0 are strictly equal but not the same.
Here is another fun equal/different thing:
NaN and NaN are the same but not strictly equal (NaN !== NaN).

function isNaN(x){
  return x !== x;
}