Math函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Math函数相关的知识,希望对你有一定的参考价值。
一. 数学函数
1.abs()
var number = -1;
var result;
2.floor()向下取整
result = Math.floor(result)
3.2 -->3
3.8 -->3
3.cell()向上取整
result = Math.ceil(result)
4.1 -->5
4.8 -->5
4.round()四舍五入
4.1 -->4
4.6 -->5
5.max() 取最大值
var result;
result = Math.max(12,42,56,23,17);
console.log(result);
6.min() 取最小值
7.random() 返回 0 ~ 1 之间的随机数。
//返回一个1 ~100的整数
var result;
result = Math.random() * 100;
result = Math.ceil(result)
console.log(result);
以上是关于Math函数的主要内容,如果未能解决你的问题,请参考以下文章