在 Google Chrome 的 cookie 上,时间戳值如下所示:
1765064691
我需要进行什么计算才能将此整数转换为人类可读的日期/时间?
// Chrome expiration_time as unix timestamp
let timestamp = 1765064691;
// Convert to milli seconds
let readableDate = new Date(timestamp * 1000);
// Format date and time
console.log("UTC:", readableDate.toUTCString()); // UTC time
console.log("Lokal:", readableDate.toLocaleString()); // locale time