How will I convert epoch timestamp millisecond to current time stamp milliseconds.
My Try:
var time = (resp.timestamp * 1000) + 1980000000;
resp.timestamp
-> epoch timestamp
I have tried adding 5hrs 30 minutes(converted to miliseconds) to the epoch timestamp but I am unable to get current time.