属性 描述
constructor 返回对创建此对象的 Number 函数的引用
prototype 添加属性和方法
MAX_VALUE 可表示的最大的数
MIN_VALUE 可表示的最小的数
NEGATIVE_INFINITY 负无穷大,溢出时返回该值。 现在一般用-Infinity表示
POSITIVE_INFINITY 正无穷大,溢出时返回该值。现在一般用Infinity表示
NaN 非数字值
方法 描述 返回值 是否改变原对象
toString 使用指定的基数,把数字转换为字符串 转换后字符串 N
toFixed 四舍五入为指定小数位数的数字 切割后字符串 N
toLocaleString 把数字转换为字符串,使用本地数字格式顺序 转换后字符串 N
toExponential 把对象的值转换为指数计数法 转换后字符串 N
toPrecision 对象的值超出指定位数时将其转换为指数计数法 转换后字符串 N
valueOf 返回基本数字值 Number对象 N

创建对象

var myNum = new Number("1"); //新建Number对象
var myNum = Number(1); // 转换成功时返回Number 失败返回NaN

属性

MAX_VALUE

console.log(Number.MAX_VALUE);  //1.7976931348623157e+308
console.log(Number.MAX_VALUE+1);//1.7976931348623157e+308

MIN_VALUE

console.log(Number.MIN_VALUE); //5e-324 接近0,但不是负数

NaN
isNaN(number)

console.log(isNaN(123));//false
console.log(isNaN(-1.23));//false
console.log(isNaN("Hello"));//true

NaN 与其他数值进行比较的结果总是不相等的,包括它自身在内。因此,不能与 Number.NaN 比较来检测一个值是不是数字,而只能调用 isNaN() 来比较。parseInt() 和 parseFloat() 在不能解析指定的字符串时就返回这个值。

Infinity
isFinite(number)
检测无穷数

如果 number 是 NaN(非数字),或者是正、负无穷大的数,则返回 false。

console.log(isFinite(123)); //true
console.log(isFinite(-1.23)); //true
console.log(isFinite("2005/12/12")); //false

方法

toString(radix) 把一个 Number 对象转换为一个字符串,并返回结果

radix:表示数字的基数,使 2 ~ 36 之间的整数。缺省参数时,使用基数 10。

var number = new Number(8);
console.log(typeof number.toString());//string
console.log(number.toString(2)); //1000 转换为二进制值表示的字符串

toFixed(num) 四舍五入规定小数位数

var num = new Number(13.37);
console.log(num.toFixed(1)); //13.4
console.log(typeof num.toFixed(1)); //string

toExponential(num) 转换对象的值为指数计数法, num规定指数计数法中的小数位数

var num = new Number(10000);
console.log(num.toExponential()); //1e+4
console.log(num.toExponential(1)); //1.0e+4
console.log(typeof num.toExponential(1)); //string

toPrecision(num) 对象的值超出指定位数时将其转换为指数计数法,num规定必须被转换为指数计数法的最小位数

var num = new Number(10000);
console.log(num.toPrecision(1)); //1e+4
console.log(num.toPrecision(4)); //1.000e+4
console.log(typeof num.toPrecision()); //string

沐乃
102 声望20 粉丝

The outer world you see is a reflection of your inner self.