NaN

 1     function w(w){console.log(w)}
 2     w(null == null);
 3     w(null === null);
 4     w(NaN == NaN); //false
 5     w(NaN === NaN); //false
 6     w(NaN); //NaN
 7     w(‘2‘ == 2) //true
 8     w(‘2‘ === 2); //false
 9     w(null == undefined) //true
10     w(null === undefined) //false

ECMA-262_ECMAScript®2015 Language Specification

6.1.6
The  Number  type  has  exactly 18437736874454810627(that  is, 264-253+3) values,
representing  the  double-precision  64-bit  format  IEEE  754-2008values  as  specified  in  the  IEEE  Standard  for  Binary  Floating-Point Arithmetic,  except  that  the 9007199254740990(that  is, 253-2)  distinct  “Not-a-Number”  values of  the  IEEE Standard are represented in ECMAScript as a single special NaN value. (Note that the NaN value is produced by the program expression NaN.)
In some implementations, external code might be able to detect a difference between various Not-a-Number values, but such behaviour is implementation-dependent; to ECMAScript code, all NaN values are indistinguishable from each other.

时间: 2024-10-10 18:16:26

NaN的相关文章

python 值比较判断,np.nan is np.nan 却 np.nan != np.nan ,pandas 单个数据框值判断nan

pandas中DataFrame,Series 都有 isnull()方法,而数据框却没有,用了就会报错:AttributeError: 'float' object has no attribute 'isnull' 怎么判断单个框是否为 np.nan Python常规的判断,==,和is, 这对None是有效的 None is NoneOut[49]: True None == NoneOut[50]: True 而对,np.nan,只能用is da1pd.ix[6000996,u'团队']

C#中的Infinity和NaN

C#中double和float类型有两个特殊值: Infinity(无穷大):5.0 / 0.0 = Infinity NaN(not a number):0.0 / 0.0 = NaN 计算表达式 0.0 / 0.0 = NaN, NaN和Infinity可以在表达式中使用: 10 + Infinity = Infinity 10 + NaN = NaN Infinity * 0 = 0 NaN * 0 = NaN

js判断NaN

NaN是什么? not a nunber //不是数字 js判断NaN?不是有isNaN?标准的函数库isNaN不可靠的. isNaN(NaN);//true  这很正常 isNaN("张为是最帅的");//true  这TM还正常吗? isNaN({});//true  这TM还正常吗? 还好NaN是Javascript中唯一一个不等于本身的值,呵呵,写个自定义函数来判断它是不是NaN. 1 //判断是不是NaN--not a number 2 function isReallyNa

Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer position contains NaN: [160 nan]解决方法

1 2014-06-11 15:19:17.167 ***[930:707] *** Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer position contains NaN: [160 nan]' 2 *** Call stack at first throw: 3 ( 4 0 CoreFoundation 0x3365d64f __exceptionPreprocess

【转】Javascript 中 null、NaN和undefined的区别

原址:http://www.cnblogs.com/qiantuwuliang/archive/2010/01/12/1645302.html 1.类型分析: js中的数据类型有undefined,boolean,number,string,object等5种,前4种为原始类型,第5种为引用类型. 代码 var a1;var a2 = true;var a3 = 1;var a4 = "Hello";var a5 = new Object();var a6 = null;var a7 

IE JavaScript字符串转换成Date后出现NaN错误

参考的博文:http://blog.csdn.net/zhu7478848/article/details/53388582 在IE浏览器下, JavaScript字符串转换成Date后会出现NaN错误,但是在其他的浏览器下,都没有问题. 因此,转变字符串的格式. var  date  = new Date("2016-10-11") 在IE下date是NaN,而其他浏览器正常. 字符串修改成 2016/10/11 var  date  = new Date("2016-10

null、undefined和NaN的简洁比较

Null 类型也只有一个值,即null.null用来表示尚未存在的对象,常用来表示函数企图返回一个不存在的对象.Undefined 类型只有一个值,即undefined.当声明的变量还未被初始化时,变量的默认值为undefined.NaN 类型表示非数字 区别:1.null 是js的保留关键字,undefined和NaN是(全局对象)window的一个特殊属性(目标 in window 为ture),不是关键字2.typeof null 为Object,undefined为undefined,N

为什么 NaN 不等于自身?

NaN 即 `Not a Number` , 不是一个数字, 那么NaN到底是什么呢? 话说在JavaScript中,有6大数据类型,分别包括string,number,boolean,undefined,null和object, 而对于JS来说,整数和浮点数都统称为number类型,除此之外,number类型还有一个很特殊的值,即NaN, 它是用来表示是否属于number类型的一种状态: 是或否.而不是一个确切的值. 那么,NaN值一般会在什么情况下出现呢?一般有两种情况: (1) 一个表达式

R: NULL, NA, and NaN

NaN (“Not a Number”) means 0/0 NA (“Not Available”) is generally interpreted as a missing value and has various forms – NA_integer_, NA_real_, etc. Therefore, NaN ≠ NA and there is a need for NaN and NA. is.na() returns TRUE for both NA and NaN, howe

非数值(Not a Number)NaN的解释

它是一个特殊的数值.它用于表示一个本来要返回数值的操作数未返回数值的情况. 在ECMAScript中,任何数值除以0会返回NaN,而不会导致错误,不会停止代码的执行,因此不会影响其他代码的执行. NaN本身两个不同寻常的特点: 1.任何涉及NaN的操作都会返回NaN,这个特点在多步计算中有可能导致问题. 2.NaN与任何值都不相等,包括NaN本身,即:alert(NaN == NaN);  //false isNaN()函数,它可以接受一个任何类型的参数,例如: alert(isNaN(NaN)