概述

Number对象是数值对应的包装对象,可以作为构造函数使用,也可以作为工具函数使用。

 

作为构造函数时,它用于生成值为数值的对象。

 

var n = new Number(1);

typeof n // "object"

上面代码中,Number对象作为构造函数使用,返回一个值为1的对象。

 

作为工具函数时,它可以将任何类型的值转为数值。

 

Number(true) // 1

上面代码将布尔值true转为数值1

 

 

属性

Number对象拥有以下一些属性。

 

Number.POSITIVE_INFINITY:正的无限,指向Infinity。

Number.NEGATIVE_INFINITY:负的无限,指向-Infinity。

Number.NaN:表示非数值,指向NaN。

Number.MAX_VALUE:表示最大的正数,相应的,最小的负数为-Number.MAX_VALUE。

Number.MIN_VALUE:表示最小的正数(即最接近0的正数,在64位浮点数体系中为5e-324),相应的,最接近0的负数为-Number.MIN_VALUE。

Number.MAX_SAFE_INTEGER:表示能够精确表示的最大整数,即9007199254740991。

Number.MIN_SAFE_INTEGER:表示能够精确表示的最小整数,即-9007199254740991。

Number.POSITIVE_INFINITY // Infinity

Number.NEGATIVE_INFINITY // -Infinity

Number.NaN // NaN

 

Number.MAX_VALUE

// 1.7976931348623157e+308

Number.MAX_VALUE < Infinity

// true

 

Number.MIN_VALUE

// 5e-324

Number.MIN_VALUE > 0

// true

 

Number.MAX_SAFE_INTEGER // 9007199254740991

Number.MIN_SAFE_INTEGER // -9007199254740991

 

 

实例方法

Number.prototype.toString()

Number对象部署了自己的toString方法,用来将一个数值转为字符串形式。

 

(10).toString() // "10"

 

toString方法可以接受一个参数,表示输出的进制。如果省略这个参数,默认将数值先转为十进制,再输出字符串;否则,就根据参数指定的进制,将一个数字转化成某个进制的字符串。

 

(10).toString(2) // "1010"

(10).toString(8) // "12"

(10).toString(16) // "a"

 

Number.prototype.toFixed()

toFixed方法先将一个数转为指定位数的小数,然后返回这个小数对应的字符串。

 

(10).toFixed(2) // "10.00"

10.005.toFixed(2) // "10.01"

 

Number.prototype.toExponential()

toExponential方法用于将一个数转为科学计数法形式。

(10).toExponential()  // "1e+1"

(10).toExponential(1) // "1.0e+1"

(10).toExponential(2) // "1.00e+1"

 

(1234).toExponential()  // "1.234e+3"

(1234).toExponential(1) // "1.2e+3"

(1234).toExponential(2) // "1.23e+3"

 

 

Number.prototype.toPrecision()

toPrecision方法用于将一个数转为指定位数的有效数字。

 

(12.34).toPrecision(1) // "1e+1"

(12.34).toPrecision(2) // "12"

(12.34).toPrecision(3) // "12.3"

(12.34).toPrecision(4) // "12.34"

(12.34).toPrecision(5) // "12.340"

 

 

自定义方法

与其他对象一样,Number.prototype对象上面可以自定义方法,被Number的实例继承。

 

Number.prototype.add = function (x) {

  return this + x;

};

 

8['add'](2) // 10

 

posted on 2018-02-24 10:59  Sharpest  阅读(151)  评论(0编辑  收藏  举报