2023-05-01から1ヶ月間の記事一覧

Date.prototype.toString()

toString() メソッドは、指定した Date オブジェクトをローカルタイムゾーンで解釈したものを表す文字列を返します。 const event = new Date('August 19, 1975 23:15:30'); console.log(event.toString()); // Expected output: "Tue Aug 19 1975 23:15:30 …

Date.now (JavaScript)

投稿日時はDate.nowという関数で取得できます。 Date.now() メソッドは、UTC (協定世界時) での 1970 年 1 月 1 日 0 時 0 分 0 秒 から現在までの経過時間をミリ秒単位で返します。 // This example takes 2 seconds to run const start = Date.now(); cons…

fs.rmdirSync

fs.rmdirSyncは、引数に指定したパスのフォルダを削除する関数です。 fs.rmdirSync(path[, options])