我正在尝试从 unix 时间返回格式化的时间。unix 时间是1349964180
.
如果您访问unixtimestamp.com并插入1349964180
Timestamp,您将获得:
TIME STAMP: 1349964180
DATE (M/D/Y @ h:m:s): 10 / 11 / 12 @ 9:03:00am EST
这就是我想要的,但是在 javascript 中。
所以像:
function convert_time(UNIX_timestamp){
......
......
return correct_format;
}
然后调用:
convert_time(1349964180);
和 console.log 应该打印:
10 / 11 / 12 @ 9:03:00am EST