Skip to content

Instantly share code, notes, and snippets.

View AttemptToCallNull's full-sized avatar

AttemptToCallNull AttemptToCallNull

  • Virginia, United States
View GitHub Profile
/* This file should be in a folder called `js` */
var clock = document.getElementById('clock');
var hexColor = document.getElementById('hex-color');
function hexClock() {
var time = new Date();
var hours = (time.getHours() % 12).toString();
var minutes = time.getMinutes().toString();
var seconds = time.getSeconds().toString();