admin管理员组文章数量:1345310
If you have an old UNIX timestamp in JavaScript... is there a way I can get the number of the age of that timestamp?
Like, the age of how old that unix timestamp is from when it is... to now.
Can you do that in JavaScript?
If you have an old UNIX timestamp in JavaScript... is there a way I can get the number of the age of that timestamp?
Like, the age of how old that unix timestamp is from when it is... to now.
Can you do that in JavaScript?
Share Improve this question asked Jan 9, 2013 at 6:11 testtest 18.2k67 gold badges173 silver badges245 bronze badges 2- The age in what, milliseconds, seconds, minutes, hours, days, weeks, months, years, etc? – Phil Commented Jan 9, 2013 at 6:14
- 1 new Date(1234567890) does not work? – rekire Commented Jan 9, 2013 at 6:14
1 Answer
Reset to default 13Assuming your timestamp is in milliseconds, you can get the the age in milliseconds using:
(new Date()).getTime() - timestamp;
If your timestamp is in seconds, multiply it by 1000 before subtracting.
You can then divide by the appropriate factor to convert to seconds/minutes/hours etc. For example, to get the age in years, you would use:
((new Date()).getTime() - timestamp) / (1000 * 60 * 60 * 24 * 365);
本文标签: unix timestamp to age in javascriptStack Overflow
版权声明:本文标题:unix timestamp to age in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743811023a2543067.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论