<header>
<h2 class="title">Date.prototype.setFullYear()</h2>
<p class="description">Змінює рік дати, при цьому зберігаючи місяць та день місяця.</p>
</header>
<main>
<div class="result">
<p>Поточна дата: <span id="currentDate">Loading...</span></p>
<label for="yearInput">Введіть новий рік: </label>
<input type="number" id="yearInput" min="1900" value="2000">
<button onclick="changeYear()">Змінити рік</button>
<p>Змінена дата: <span id="changedDate">Loading...</span></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);
}
button {
margin-left: 10px;
}
window.onload = function() {
const currentDateElem = document.getElementById("currentDate");
const changedDateElem = document.getElementById("changedDate");
let date = new Date();
currentDateElem.textContent = date.toDateString();
window.changeYear = function() {
const yearInput = document.getElementById("yearInput").value;
date.setFullYear(yearInput);
changedDateElem.textContent = date.toDateString();
}
changeYear();
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.