Module

x/lodash_es/src/isNaN.js>default

lodash for deno use
Latest
function default
import { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/isNaN.js";

Checks if value is NaN.

Note: This method is based on Number.isNaN and is not the same as global isNaN which returns true for undefined and other non-number values.

Examples

_.isNaN(NaN); // => true

_.isNaN(new Number(NaN)); // => true

isNaN(undefined); // => true

_.isNaN(undefined); // => false

Parameters

value

The value to check.