javaScript数值型

AA1数据类型:

        数值型:

        1 十进制数:(整数 和 浮点数)

        例:10 177.5 -2.7 .3333e77(指数表示) -1.7E12  3.E-52 十六进制:

        以数字0开头 紧跟 x : 后面是数字和字母

         例:0x0 oxF8f00 0x1a3c57

        3 八进制

        以数字0开头

        例: 00 0777 012343

        4 特殊值Infinity( ‘‘无穷大’’);

        5 特殊值 NaN (“not a number ---------- undefined 表达式结果的数值数据时为NaN”)

        例:var x = 0/0;   (x 为NaN)

        6 Number 对象中有关的特殊值的属性列表:

        Number.MAX_VALUE    可表示的最大值 

        Number.MIN_VALUE     可表示的最小值

        Number.POSITIVE_INFINITY    无穷大的Infinity

        Number.NEGATIVE_INFINITY    无穷小的Infinity

        Number.NaN        NaN



所有的Infinity 值都是相等的

        var posInf= Number.POSITIVE_INFINITY;   

        var negInf= Number.NEGATIVE_INFINITY;

        alert(posInf == negInf);    false

        alert(posInf == -negInf);      true



        alert(posInf == -negInf +1);   true

        alert(posInf == -negInf * 100);  true

        alert(Number.MAX_VALUE);  

        

        

            

 

你可能感兴趣的:(JavaScript)