Js Math隨機數

howhy發表於2024-03-07

Math.ceil(1.2) //2 向上取整

Math.floor(1.3) //2 向下取整

Math.round(4.3)//4 四捨五入

Math.random() 0-10隨機數 包含0但不包含10

生成0-10隨機數

Math.floor(Math.random()*(10+1))

生成5-10隨機數

Math.floor(Math.random()*(10+1))+5

生成M-N隨機數

Math.floor(Math.random()*(N-M+1))+M

相關文章