LoginSignup
0
0

More than 3 years have passed since last update.

moment.jsでミリ秒を取得する方法

Posted at

moment.js 便利だお。

// 現在日時の場合
const millisecond = moment().valueOf()
// 日付を指定する場合
const millisecond = moment(new Date('2020-04-02')).valueOf()

ちなみに、momentオブジェクトが正しい日付形式になっていないと.valueOf()で取得した値はNaNになります(ハマりました)。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0