绝对值Math.abs()
console.log(Math.abs(-25));
console.log(Math.abs(‘-25‘));//存在隐式转换可以求绝对值
console.log(Math.abs(‘wq‘));//结果为NaN not a number
取整Math.floor() Math.ceil()
console.log(Math.floor(1.9)); 向下取整 floor意为地板
console.log(Math.ceil(1.1)); 向上取整 ceil意为天花板
四舍五入Math.round()
console.log(Math.round(1.5)); 结果为2
console.log(Math.round(-1.5)); 注意当以 .5 结束时,结果往较大数取,所以此结果为-1
随机数函数Math.random()
function getRandom(min,max){
return Math.floor(Math.random()*(max-min+1))+min; //随机整数
}
console.log(Math.random()); //o到1(包含0)的随机小数
console.log(getRandom(1,10));
原文地址:https://www.cnblogs.com/qiqisusu/p/11508168.html
时间: 2024-10-08 11:33:04