...
This noncompliant code example attempts a direct comparison with NaN
. As per the semantics of NaN
, all comparisons with NaN
yield false
(with the exception of the !=
operator, which returns true
). Consequently, this comparison alwayss always return false
, and the "result is NaN" message is never printed.
...