I am using openweather map api for creating a weather application. The response data for daily has the following format:
{"dt":1590343200,"temp":302.72,..,..,}
It also provides timezone offset.
timezone_offset":19800
How do I calculate current date from the above 2 values using javascript ?
Thanks