Created
April 5, 2025 13:55
-
-
Save sunmeat/cda76c36d2b96ded4b893b6adcc2f06b to your computer and use it in GitHub Desktop.
Math.random()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html class="no-js" lang=""> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title></title> | |
<link rel="stylesheet" href="css/style.css"> | |
<link rel="icon" href="/favicon.ico" sizes="any"> | |
<link rel="icon" href="/icon.svg" type="image/svg+xml"> | |
<link rel="apple-touch-icon" href="icon.png"> | |
</head> | |
<body> | |
<script> | |
// число от 0 до 10 включительно (целое) | |
function getRandomInt0To10() { | |
return Math.floor(Math.random() * 11); // 0–10 | |
} | |
// число от -5 до +5 включительно (целое) | |
function getRandomIntMinus5To5() { | |
return Math.floor(Math.random() * 11) - 5; // 11 чисел (0–10), сдвиг на -5 | |
} | |
// число от 0.0 до 10.0 с точностью до 3 знаков (вещественное) | |
function getRandomFloat0To10() { | |
return Number((Math.random() * 10).toFixed(3)); // 0.000–10.000 | |
} | |
// случайная строка из "утро, день, вечер, ночь" | |
function getRandomTimeOfDay() { | |
const times = ["утро", "день", "вечер", "ночь"]; | |
const randomIndex = Math.floor(Math.random() * times.length); // 0–3 | |
return times[randomIndex]; | |
} | |
console.log("Число от 0 до 10: " + getRandomInt0To10()); | |
console.log("Число от -5 до 5: " + getRandomIntMinus5To5()); | |
console.log("Число от 0.0 до 10.0: " + getRandomFloat0To10()); | |
console.log("Время суток: " + getRandomTimeOfDay()); | |
for (let i = 0; i < 3; i++) { | |
console.log(`Итерация ${i + 1}:`); | |
console.log(getRandomInt0To10()); | |
console.log(getRandomIntMinus5To5()); | |
console.log(getRandomFloat0To10()); | |
console.log(getRandomTimeOfDay()); | |
} | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment