본문 바로가기
JS

랜덤숫자 구하기

by 율✌️ 2022. 5. 26.

Math.floor(Math.random() * (maximum – minimum + 1)) + minimum

 

예) 1포함 6까지 랜덤으로 숫자를 구하고 싶다.

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