Math.random()
将返回0-1之间的随机数
注:左闭右开,即:包含0但不包含1
Math.round()
四舍五入返回整数
Math.ceil()
向上取整
Math.floor()
向下取整
结论
Math.floor(Math.random()*y+x) //生成x-y的随机数
Math.floor(obj) === obj //判断整数
Math.random()
将返回0-1之间的随机数
注:左闭右开,即:包含0但不包含1
Math.round()
四舍五入返回整数
Math.ceil()
向上取整
Math.floor()
向下取整
结论
Math.floor(Math.random()*y+x) //生成x-y的随机数
Math.floor(obj) === obj //判断整数