mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-06 06:20:30 +02:00
Update index.js
This commit is contained in:
parent
4915a0f701
commit
9ab006a8d2
1 changed files with 2 additions and 2 deletions
|
@ -28,14 +28,14 @@ const updateAge = () => {
|
|||
const now = new Date();
|
||||
const diff = now.getTime() - birthday.getTime();
|
||||
age = diff / (1000 * 60 * 60 * 24 * 365.25);
|
||||
ageElem.innerHTML = `${age} years old`;
|
||||
ageElem.innerHTML = `${age.toFixed(10)} years old`;
|
||||
}
|
||||
|
||||
updateAge();
|
||||
|
||||
const timeInterval = setInterval(() => {
|
||||
updateAge();
|
||||
}, 10);
|
||||
}, 100);
|
||||
|
||||
function lan() {
|
||||
lanyard({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue