Math.max() | 最大值 |
---|---|
Math.min() | 最小值 |
Math.PI() | 圆周率 |
Math.floor() | 向下取整 |
Math.ceil() | 向上取整 |
Math.round() | 四舍五入 |
Math.abs() | 绝对值(隐式转换)字符串转为数字 |
Math.randon() | 随机数 |
随机数 Math.random() 返回随机一个小数 0<=x<1
1.方法里面不跟参数
案例
Math.floor(math.random()*(max-min+1))+min;
fucthon 函数名(min,max){ return Math.floor(math.random()*(max-min+1))+min; }
用随机数班级点名 arr[张三,李四,王五,赵六]
console.log(arr[getRande(0,arr.length-1)]);