const timeStamp = Math.round((new Date()).getTime() / 1000);
getTime()
はUNIXエポックからミリ秒を返します。1000で割って秒表現を取得し、 Math.round()で値を整数に変換します。
日時(Tokyo)=2017/07/27 23:28:17
↓
タイムスタンプ=1501165697
こちらのサイトでタイムスタンプを日付と時刻に変換できる。
http://url-c.com/tc/
Go to list of users who liked
More than 5 years have passed since last update.
const timeStamp = Math.round((new Date()).getTime() / 1000);
getTime()
はUNIXエポックからミリ秒を返します。1000で割って秒表現を取得し、 Math.round()で値を整数に変換します。
日時(Tokyo)=2017/07/27 23:28:17
↓
タイムスタンプ=1501165697
こちらのサイトでタイムスタンプを日付と時刻に変換できる。
http://url-c.com/tc/
Register as a new user and use Qiita more conveniently
Go to list of users who liked