JavaScript(JS) JS convert date to number
In JavaScript, you can convert a Date
object to a number using the getTime()
method. The getTime()
method returns the number of milliseconds elapsed since January 1, 1970, 00:00:00 UTC, which is also known as the Unix epoch. Here's an example:
const date = new Date('2022-01-01'); const timeInMilliseconds = date.getTime(); console.log(timeInMilliseconds);
In the above example, we declare a Date
object date
with the value '2022-01-01'
. We then call the getTime()
method on the date
object, which returns the number of milliseconds elapsed since the Unix epoch. We store the result in a variable timeInMilliseconds
and print it to the console.
When the code is executed, the number of milliseconds elapsed since the Unix epoch for the date '2022-01-01'
will be printed to the console. Note that the result will be a large integer, which represents the number of milliseconds elapsed since the Unix epoch.
You can also use other methods of the Date
object to get different representations of the date, such as getFullYear()
, getMonth()
, getDate()
, getHours()
, getMinutes()
, getSeconds()
, and getMilliseconds()
. Depending on your use case, one of these methods may be more appropriate than getTime()
.