Skip to content

Instantly share code, notes, and snippets.

@aliou
Created March 12, 2013 12:38
Show Gist options
  • Save aliou/5142554 to your computer and use it in GitHub Desktop.
Save aliou/5142554 to your computer and use it in GitHub Desktop.
// http://unwieldy.net
var bday = new Date(1992, 11, 17, 07, 27),
ones = ['', 'one', 'two', 'three', 'four', 'five',
'six', 'seven', 'eight', 'nine'],
tens = ['', '', 'twenty', 'thirty', 'forty', 'fifty', 'sixty',
'seventy', 'eighty', 'ninety'];
var days = (new Date() - bday) / 1000 / 60 / 60 / 24,
hours = days % 24 % 365.25;
console.log(Math.floor(days));
console.log(Math.floor(hours));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment