From 4b368750f911c182ddce6c41fb3b78b90fd5c622 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Fri, 26 Jul 2013 01:18:13 +0200 Subject: [PATCH] Fixes #1192 -- documentation clarification for isNaN --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index f31e77532..57c84176c 100644 --- a/index.html +++ b/index.html @@ -1454,7 +1454,7 @@

Object Functions


Returns true if object is NaN.
Note: this is not the same as the native isNaN function, which will also return - true if the variable is undefined. + true for many other not-number values, such as undefined.

 _.isNaN(NaN);