11
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ライブラリ依存せずyyyy-MM-ddの日付文字列を取得する最短のJavaScriptコード

Posted at

date-fnsなど流行なライブラリを使えば、yyyy-MM-dd日付文字列を簡単に取得できるが、たまに外部依存をしたくない場合もある。

実装例

new Date('2025-04-02 07:00:00').toLocaleDateString("ja-JP", {
  year: "numeric",
  month: "2-digit",
  day: "2-digit"
}).replaceAll('/', '-')

// 出力 2025-04-02

間違いそうな実装例

new Date('2025-04-02 07:00:00').toISOString().split('T')[0]

// 出力 2025-04-01

最短(わかりにくい)実装例

new Date('2025-04-02 07:00:00').toLocaleDateString('sv-SE')

// 出力 2025-04-02

sv-SEはスウェーデンの国コードで、それの日付フォーマットはyyyy-MM-ddである。

11
7
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
11
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?