Update index.js

This commit is contained in:
zyqunix 2025-06-06 01:01:13 +02:00 committed by GitHub
parent 4915a0f701
commit 9ab006a8d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,14 +28,14 @@ const updateAge = () => {
const now = new Date(); const now = new Date();
const diff = now.getTime() - birthday.getTime(); const diff = now.getTime() - birthday.getTime();
age = diff / (1000 * 60 * 60 * 24 * 365.25); age = diff / (1000 * 60 * 60 * 24 * 365.25);
ageElem.innerHTML = `${age} years old`; ageElem.innerHTML = `${age.toFixed(10)} years old`;
} }
updateAge(); updateAge();
const timeInterval = setInterval(() => { const timeInterval = setInterval(() => {
updateAge(); updateAge();
}, 10); }, 100);
function lan() { function lan() {
lanyard({ lanyard({