标签:math 最小值 数字 字符串 asc script round tofixed 四舍五入
数值一:
1、Math.abs(x) --------绝对值
2、Math.round(x) --------四舍五入
3、Math.ceil(x) --------向上取整
4、Math.floor(x) --------向下取整
5、Math.max([val1[,val2[,...]]]) -------取最大值
6、Math.min([val1[,val2[,...]]]) -------取最小值
7、Math.random --------随机数(在0-1之间)
8、Math.cos(x) --------余弦值
9、Math.exp(x) --------ex
10、Math.log(x) --------ey=x 返回y的值
11、Math.sqrt(x) --------平方根
12、Math.pow(x,y) --------xy
数值二:
1、parseInt(string,radix) -------将字符串转为整数、整型 radix几进制(可以有非数字内容)
2、parseFloat(string) --------将字符串转换成小数、浮点型(可以有非数字内容)
3、Number(value) ---------将字符串转换成数字(不能有非数字内容,负责返回NaN)
4、num.toFixed(digits) -----------保留指定有几位小数点
标签:math 最小值 数字 字符串 asc script round tofixed 四舍五入
原文地址:https://www.cnblogs.com/nicc1206/p/10152953.html