JavaScript 数字之Number对象
2021-07-12 01:05
标签:eof obj round exp tor 长度 pre 使用 color 注:如果一个参数不能转换为一个数字,将返回NaN(非数字值)。 JavaScript Number对象: https://www.runoob.com/jsref/jsref-obj-number.html JavaScript 数字之Number对象 标签:eof obj round exp tor 长度 pre 使用 color 原文地址:https://www.cnblogs.com/luyj00436/p/14986392.html说明
语法
var num = new Number(value);
Number对象属性
属性
描述
constructor
返回对创建此对象的Number函数的引用。
MAX_VALUE
可表示的最大数。
MIN_VALUE
可表示的最小的数。
NEGATIVE_INFINITY
负无穷大,溢出时返回该值。
NAN
非数字值。
POSITIVE_INFINITY
正无穷大,溢出时返回该值。
prototype
允许您向对象添加属性和方法。
Number对象方法
方法
描述
isFinite
检测指定参数是否为无穷大。
toExponential(x)
把对象值转换为指针计数法。
toFixed(x)
把数字转换为字符串,结果的小数点后有指定位数的数字。
toPrecision(x)
把数字格式化为制定的长度。
toString()
把数字转换为字符串,使用指定的基数。
valueOf()
返回一个Number对象的基本数字值。
ES 6
ES 6新增Number属性
ES 6新增Number方法
参考网址