Skip to content

Instantly share code, notes, and snippets.

@pashagray
Created June 6, 2016 11:43
Show Gist options
  • Save pashagray/abf4ef7fdc691d1d7d3617d7d894b105 to your computer and use it in GitHub Desktop.
Save pashagray/abf4ef7fdc691d1d7d3617d7d894b105 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
var forecasts = [
'Вас всегда будут преследовать беды и неудачи!',
'Лучше сидите дома, удача явно повернута к вам жопой',
'Хокку. Сосулька висит, сосулька ждет, череп не крепкий.',
'Тут плохое предсказание... Лучше попробуйте еще раз'
]
function selectForecast() {
return forecasts[Math.floor(Math.random() * (forecasts.length)) + 0];
}
function pasteForecast() {
document.getElementById("forecast").textContent = selectForecast();
}
</script>
</head>
<body>
<button onclick="pasteForecast()">Предсказание</button>
<h1 id="forecast"></h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment