Math 객체의 random() 함수는 0.0에서 1.0 사이의 부동 소수점 난수를 반환합니다. 범위는 0.0 =
구문은 다음과 같습니다.구문
Math.random();
예시
<html>
<head>
<title>JavaScript Example</title>
</head>
<body>
<script type="text/javascript">
var result = Math.random(48, 2);
document.write("Result "+result);
</script>
</body>
</html>
출력
Result 0.16413337253303162