#Create Date UTC
5 messages · Page 1 of 1 (latest)
dates are by default in utc
Date objects encapsulate an integral number that represents milliseconds since the midnight at the beginning of January 1, 1970, UTC (the epoch).
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date
if you want a timestamp, just use getTime
@primal elbow