beep boop

This commit is contained in:
Boof 2023-06-01 07:55:58 +02:00 committed by GitHub
parent a5e304fb9e
commit b7ac76d615
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ function calculateYearsSince() {
const hours = Math.floor((diffInMs % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((diffInMs % (1000 * 60 * 60)) / (1000 * 60));
document.getElementById("age").innerText = math.floor(diffInYears) + " years, " + days + " days, " + hours + " hours and " + minutes + " minutes"
document.getElementById("age").innerText = Math.floor(diffInYears) + " years, " + days + " days, " + hours + " hours and " + minutes + " minutes"
}
var year = 2023