Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter03 : Random 본문

WEB.JS/03.내장객체_JS

chapter03 : Random

GAWON 2023. 5. 19. 09:24
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Math.random()</title>
<script type="text/javascript">

```
document.write("<h1> 0 ~ 1 사이 난수 :" + Math.random() + "</h1>");

// 10% 확룰로 "불합격" 출력하고, 나머지 확률로 "합격"을 출력하시오.
alert( Math.random() <= 0.1 ? "불합격" : "합격");

// 0 ~ 9 사이의 난수를 1개 출력하시오.
document.write("<h1> 0 ~ 9 사이 난수 : " + (Math.floor(Math.random() * 10)) +"</h1>");
// 1 ~ 10 사이의 난수를 1개 출력하시오.
document.write("<h1> 1 ~ 10 사이 난수 : " + (Math.floor(Math.random() * 10)+1) +"</h1>");

```

</script>
</head>
<body>

</body>
</html>

'WEB.JS > 03.내장객체_JS' 카테고리의 다른 글

chapter02 : Math  (0) 2023.05.19
chapter01 : Date  (0) 2023.05.19