automated age calculation

This commit is contained in:
Karma Riuk 2024-03-12 14:03:01 +01:00
parent 63e00968e0
commit 8000504c04
2 changed files with 20 additions and 1 deletions

View File

@ -308,6 +308,11 @@
if (localStorage.getItem("theme") == "light") {
toggleDarkMode();
}
// Set age correctly (cuz sbatti farlo ogni
// anno, toi meme tu sais)
let age_span = document.querySelector("#age");
age_span.textContent = calculateAge("1999-10-15");
})();
function toggleDarkMode() {
@ -321,3 +326,17 @@ function toggleDarkMode() {
document.documentElement.style.setProperty("color-scheme", theme);
localStorage.setItem("theme", theme);
}
function calculateAge(birthDate) {
const today = new Date();
const birth = new Date(birthDate);
let age = today.getFullYear() - birth.getFullYear();
const monthDifference = today.getMonth() - birth.getMonth();
// Check if the birthday has not occurred yet this year
if (monthDifference < 0 || (monthDifference === 0 && today.getDate() < birth.getDate())) {
age--;
}
return age;
}

View File

@ -115,7 +115,7 @@
</div>
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Age:</strong> <span>23</span>
<li><i class="bi bi-chevron-right"></i> <strong>Age:</strong> <span id="age">23</span>
</li>
<!-- <li><i class="bi bi-chevron-right"></i> <strong>Degree:</strong> <span>Master in -->
<!-- Software and Data Engineering </span> -->