How to convert timestamp to days by javascript
This article mainly explains "how javascript converts timestamps into days". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "how javascript converts timestamps into days".
1. Get the timestamp of the current time and the timestamp of the specified date.
2. The time difference is obtained by subtracting the two time stamps.
3. Calculate the value of the expression "time difference / (1000-360024)".
Example
Var time = Date.parse (new Date ("2020-08-31 16:00"); var d = new Date (); var rangeDateNum = (d.getTime ()-time) / (1000 / 3600 / 24); console.log (rangeDateNum)
Output
371.9680493634259 so far, I believe you have a deeper understanding of "how javascript converts timestamps into days". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!