AhoyIndieMedia / ahoy.ooo

Bug and Feature Track of ahoy.ooo
1 stars 0 forks source link

Add Live Clock Display #32

Closed AhoyIndieMedia closed 2 years ago

AhoyIndieMedia commented 2 years ago

Add Live Clock Display

AhoyIndieMedia commented 2 years ago

var date = new Date();
// get the date as a string
var n = date.toDateString();
// get the time as a string
var time = date.toLocaleTimeString();

// find the html element with the id of time
// set the innerHTML of that element to the date a space the time
document.getElementById('time').innerHTML = n + ' ' + time;```