Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 330 Bytes

09-unix-timestamp.md

File metadata and controls

15 lines (11 loc) · 330 Bytes
title version signature
Unix Timestamp (seconds)
1.6.0
moment().unix();

moment#unix outputs a Unix timestamp (the number of seconds since the Unix Epoch).

moment(1318874398806).unix(); // 1318874398

This value is floored to the nearest second, and does not include a milliseconds component.