This repository has been archived on 2025-04-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Spirit/functions/clock.js
2024-08-29 17:14:50 -04:00

8 lines
No EOL
297 B
JavaScript

InputTime()
function InputTime() {
let currentTime = new Date();
let options = { timeStyle: 'short', hour12: true };
let timeString = currentTime.toLocaleTimeString('en-US', options);
document.querySelector('#main-clock').innerHTML = `${timeString}`
}
setInterval(InputTime, 1000);