<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
// 랜덤수 생성하는 방법
// 0 ~ 1 사이의 소수점 형태로 되돌려주는 기능
let num = Math.random();
console.log(num);
// 1 ~ 100 사이의 정수
let num2 = Math.random()*100+1;
console.log(parseInt(num2));
</script>
</body>
</html>
'Web > JavaScript' 카테고리의 다른 글
랜덤배열, 점수출력 예제 (0) | 2023.04.17 |
---|---|
배열 (0) | 2023.04.17 |
반복문 (0) | 2023.04.17 |
조건문 (0) | 2023.04.17 |
연산자 (0) | 2023.04.14 |
댓글