Is there a way to get the complete timestamp(including date, hour of the day, min, microseconds and timezone) in Node.js?
I am using node version 4.3.0.
Is there a way to get the complete timestamp(including date, hour of the day, min, microseconds and timezone) in Node.js?
I am using node version 4.3.0.
The easiest way is probably just new Date();
You might also try Date.now()
which will give you the current timestamp in milliseconds.