<header>
<h2 class="title">Date.prototype.setUTCMonth()</h2>
<p class="description">Цей метод змінює місяць вказаної дати відповідно до всесвітнього координованого часу.</p>
</header>
<main>
<div class="result">
<label for="month">Введіть місяць (0 - 11):</label>
<input type="number" id="month" min="0" max="11">
<button onclick="changeMonth()">Змінити місяць</button>
<p id="output">Тут буде виведено результат.</p>
</div>
</main>
body {
font-size: 16px;
line-height: 1.5;
font-family: monospace;
}
header {
background-color: #f1f1f1;
margin-bottom: 25px;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
header h2.title {
padding-bottom: 15px;
border-bottom: 1px solid #999;
}
header p.description {
font-style: italic;
color: #222;
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
let currentDate = new Date();
function changeMonth() {
let monthInput = document.getElementById('month');
let output = document.getElementById('output');
// Parse the month and set it
let month = parseInt(monthInput.value);
if (month >= 0 && month <= 11) {
currentDate.setUTCMonth(month);
output.textContent = `Змінена дата: ${currentDate.toUTCString()}`;
} else {
output.textContent = 'Введіть коректний місяць.';
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.