Implement Local Time Display
arishuynhvan opened this issue · 1 comments
arishuynhvan commented
Implement Local Time Display
Mozar10 commented
Here is a simple suggestion for this:
var time = document.getElementById('time');
function displayTime(){
time.innerHTML = new Date().toLocaleTimeString();
}
setInterval(displayTime,1000);
String manipulation can be used to extract the time, and get rid of AM/PM (substr)