Mọi người cho em hỏi với ạ. Khi lấy sunrise từ openweathermap về nó hiện ra 1635634714. Phải làm sao để chuyển về giờ bình thường ạ.
Lấy sunrise, sunset từ openweathermap react native expo
Số 1635634714 là unix timestamps bắt đầu tính từ mốc 0h0’0’’ 1/1/1970 (mỗi mili giây tăng thêm 1)
const milliseconds = 1635634714 * 1000
const dateObject = new Date(milliseconds)
const humanDateFormat = dateObject.toLocaleString()
console.log(humanDateFormat)
3 Likes