[Node.js] 現在の日時の Date オブジェクトを得る
作成日: 2022年07月21日
Date
オブジェクトを初期化すると現在の日時の情報を保有した Date
オブジェクトを得ることができます。
let currentDate = new Date();
console.log(currentDate);
実行結果は下記のとおりです。
2022-07-22T16:17:56.310Z
Date
オブジェクトを初期化すると現在の日時の情報を保有した Date
オブジェクトを得ることができます。
let currentDate = new Date();
console.log(currentDate);
実行結果は下記のとおりです。
2022-07-22T16:17:56.310Z