Checks if value is not equal to the provided value.
const notNan = notValue(NaN);notNan(NaN); // Error: notValuenotNan(123); // passes Copy
const notNan = notValue(NaN);notNan(NaN); // Error: notValuenotNan(123); // passes
Value used in the comparison.
Checks if value is not equal to the provided value.
Example