凯发娱发k8

javascript中number常用属性和方法 -凯发娱发k8

2023-08-16,,


title: javascript中number常用属性方法

toc: false

date: 2018-10-13 12:31:42


number.max_value——1.7976931348623157e 308,可表示的最大数

number.min_value——5e-324,可表示的最小数

toexponential(x)——把对象的值转换为指数计数法

tofixed(x)——把数字转换为字符串,x为小数点后位数

toprecision(x)——把数字格式化为指定的长度

tostring(x)——使用x为基数,把数字转换为字符串

valueof()——返回值

var a = 5.4546;
a.toexponential(); // "5.4546e 0"
a.toexponential(2); // "5.45e 0"
a.tofixed(); // "5"
a.tofixed(5); // "5.45460"
a.toprecision(3); // "5.45"
a.tostring(); // "5.4546"
a.tostring(2); //"101.01110100011000001010101001100100110000101111100001"
a.valueof(); //5.4546

javascript中number常用属性和方法的相关教程结束。

网站地图