Agile育成ブログ
未来を変える喜びを
javascript

JavaScript_date-fns


Warning: count(): Parameter must be an array or an object that implements Countable in /home/xs638785/agile-software.site/public_html/wp-content/plugins/rich-table-of-content/functions.php on line 490

日付型のデータを楽に扱えるライブラリのひとつがdate-fnsです。

getDate

現在の日にちを取得する。

getDate(date)

getMonth

現在の月を取得する。

getMonth(date)

getYear

現在の年を取得する。

getYear(date)

format

format 関数は、日付や時刻のフォーマットを指定して、読みやすい形式で日付や時刻を表示するための関数です。
new Date()でDateオブジェクトを作成しています。
new Date() を引数なしで呼び出すと、現在のブラウザのタイムゾーンに基づいた日付と時刻が取得されます。

import { format } from 'date-fns';

const currentDate = new Date();

const formattedDate = format(currentDate, 'yyyy-MM-dd HH:mm:ss');
console.log(formattedDate); // 例: "2023-07-29 15:30:00"

You cannot copy content of this page