Math.random()1 JavaScript_자바스크립트 Math.random() 외 난수 생성하는 방법 1. Math.random() Math.random() 는 0이상 1미만의 구간에서 난수를 생성하는 메서드 //기본 문법 Math.random(); //출력예시 document.write(Math.random()); // => 0.9751258465223 2. Math.random() 사용법 - 두 값 사이의 난수 생성하는 법 (min보다 크거나 같으며 max보다 작다) Math.random() * (max - min) + min; document.write(Math.random()*( 10 - 1 ) + 1 ); // =>출력예시 9.7584512223 - 두 값 사이의 난수 정수 생성하는 법 (min보다 크거나 같으며 max보다 작다) Math.floor() 는 주어진 숫자와 같거나 더 작은 정수중에.. 2022. 8. 16. 이전 1 다음