0에서 199 사이의 난수를 반환하려면 JavaScript Math.random() 및 Math.floor() 메서드를 사용하십시오.
예시
다음 코드를 실행하여 JavaScript에서 임의의 숫자를 반환할 수 있습니다.
<!DOCTYPE html> <html> <body> <script> document.write(Math.floor(Math.random() * 200)); </script> </body> </html>
0에서 199 사이의 난수를 반환하려면 JavaScript Math.random() 및 Math.floor() 메서드를 사용하십시오.
다음 코드를 실행하여 JavaScript에서 임의의 숫자를 반환할 수 있습니다.
<!DOCTYPE html> <html> <body> <script> document.write(Math.floor(Math.random() * 200)); </script> </body> </html>