Bigghead/Momentum-Clone

Implement Local Time Display

arishuynhvan opened this issue · 1 comments

Implement Local Time Display

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)