I have hexadecimal value like - 160413031849, which needs to be converted to valid Date time (something readable) like - April 13, 16th, 3:18:49. So how I can do it with JS in nodeJS.
Asked
Active
Viewed 17 times
0
-
Please share the code which you have tried. – Hassan Imam May 28 '19 at 07:44
-
It's a Unix datestamp - `new Date(value * 1000)`. – Jack Bashford May 28 '19 at 07:46