SyntaxFix
Write A Post
Hire A Developer
Questions
convert timestamp to unix timestamp.
const date = 1513787412; const unixDate = new Date(date * 1000);// Dec 20 2020 (object)
to get the timeStamp after conversion const TimeStamp = new Date(date*1000).getTime(); //1513787412000
const TimeStamp = new Date(date*1000).getTime(); //1513787412000