Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 두 숫자 사이에 난수를 생성하는 방법은 무엇입니까?


두 숫자 사이에 난수를 생성하려면 Math.random() 메소드를 사용하십시오.

예시

다음 코드를 실행하여 최소값과 최대값 사이의 난수를 얻을 수 있습니다. -

라이브 데모

<!DOCTYPE html>
<html>
   <body>
      <script>
         function randomInt(min, max) {
            min = Math.ceil(min);
            max = Math.floor(max);
            return Math.floor(Math.random() * (max - min)) + min;
         }
         alert(randomInt(5,25));
      </script>
   </body>
</html>