数字对象Math 里面求 最大值方法 -- Math.max(1,12,....)
例: console.log(Math.max(1, 99, 3)); // 99
如果一组数字,里面出现非数字的-- 返回NaN
例: console.log(Math.max(1, 99, 'pink老师')); // NaN
console.log(Math.abs('-1')) -- 隐式转换,把字符串的转为数字型,结果绝对值
例: console.log(Math.abs('-1')); // 隐式转换 会把字符串型 -1 转换为数字型
四舍五入 -- Math.round() -- 重点记住!
例:console.log(Math.round(1.5)); // 2
console.log(Math.round(-1.5)); // 这个结果是 -1
向下取整 -- Math.floor() -- 重点记住!
例: console.log(Math.floor(1.9)); // 1
向上取整 -- Math.ceil() -- 重点记住!
例:console.log(Math.ceil(1.1)); // 2
Math.random() -- 返回:大于0的,小于1 的随机数。
function getSuiji(min,max){
return Math.floor(Math.random() * (max - min + 1) + min);
}
getSuiji(10,20);