Math.random():是0~1之间的随机小数
Math.round():是四舍五入取整
Math.round(Math.random()) :0与1两整数
Math.round(Math.random()*n):0~n之间随机整数
Math.round(Math.random()*n+m):m~(n+m)之间的整数
Math.ceil():向上取整
Math.ceil(Math.random()*x):1~x之间的随机整数
时间: 2024-10-06 01:27:01
Math.random():是0~1之间的随机小数
Math.round():是四舍五入取整
Math.round(Math.random()) :0与1两整数
Math.round(Math.random()*n):0~n之间随机整数
Math.round(Math.random()*n+m):m~(n+m)之间的整数
Math.ceil():向上取整
Math.ceil(Math.random()*x):1~x之间的随机整数