Back to top.
Date.now() doesn’t work in IE 8 (or earlier)

This is the workaround:

// For IE8 and earlier version.
if (!Date.now) {
  Date.now = function() {
    return new Date().valueOf();
  }
}

source: Here

http://tmblr.co/Z4bAYxSh-KRQ