Skip to content

Instantly share code, notes, and snippets.

@micnic
Last active December 28, 2015 09:07
Show Gist options
  • Save micnic/33b3a5d9d82f725e8ed5 to your computer and use it in GitHub Desktop.
Save micnic/33b3a5d9d82f725e8ed5 to your computer and use it in GitHub Desktop.
Happy New Year
setInterval(function () {
console.log('%cHappy New Year!', 'color: ' + '#' + Array.apply(Array, Array(3)).map(function () {
return ('0' + Math.round(Math.random() * 255).toString(16)).substr(-2);
}).join(''));
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment