Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
20
rated 0 times [  21] [ 1]  / answers: 1 / hits: 141706  / 13 Years ago, sun, february 26, 2012, 12:00:00

On Unix, I can run date '+%s' to get the amount of seconds since epoch. But I need to query that in a browser front-end, not back-end.



Is there a way to find out seconds since Epoch in JavaScript?


More From » datetime

 Answers
15
var seconds = new Date() / 1000;


Or, for a less hacky version:



var d = new Date();
var seconds = d.getTime() / 1000;


Don't forget to Math.floor() or Math.round() to round to nearest whole number or you might get a very odd decimal that you don't want:



var d = new Date();
var seconds = Math.round(d.getTime() / 1000);

[#87198] Friday, February 24, 2012, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
anitadevonm

Total Points: 730
Total Questions: 93
Total Answers: 74

Location: Estonia
Member since Wed, Jun 8, 2022
2 Years ago
;