前端中关于Number的知识点

  1. number.toFixed(保留小数点后几位); 会转为字符串类型。会自动四舍五入

  2. Math: 数学,内置对象,保存了数学公式和信息的对象

3. Math对象上的方法

1. 找出最大值, 最小值

Math.max(多个需要比较的值); // 返回最大值
Math.min(多个需要比较的值); // 返回最小值

扩展:
Math.max.apply(Math, [5,6,7])

2. 舍入方法

Math.ceil(数字); 向上取整
Math.floor(数字); 向下取整
Math.round(数字); 四舍五入

3. 随机数

Math.random(); 0 ~ 1;

function random(start, end) {
return Math.floor(Math.random() * (end - start + 1) + start);
}

4. 绝对值

Math.abs(数字)

5. 次幂

Math.pow(num, power): num的power次幂

6. 平方根

Math.sqrt(num); 平方根

作者:L H

你可能感兴趣的:(前端中关于Number的知识点)