Probably and easy answer to this but I can\'t seem to find a way to get moment.js to return a UTC date time in milliseconds. Here is what I am doing:
var dat
moment.utc(date).format(...);
is the way to go, since
moment().utc(date).format(...);
does behave weird...