2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【JavaScript】現在時刻のyyyy-mm-dd hh:mm:ss の文字列を作成

Last updated at Posted at 2023-01-10

使用する機会があったのでメモです。
yyyy/mm/dd hh:mm:ssの記事は見かけたのですが、yyyy-mm-dd hh:mm:ssの記事は少なく…
getMonth()をつなげる方法だと「5月」とか1桁しか取れないし、ライブラリも使いたくない。

const date = new Date();
date.setTime(date.getTime() - date.getTimezoneOffset() * 60 * 1000);
const str_date = date.toISOString().replace('T', ' ').substring(0,19);
console.log(str_date); // 2023-01-07 12:01:43

追記:
@ss8826 さんよりコメント欄にてより良い書き方を教えていただきました。
ありがとうございます!

以下のサイトにお世話になりました。

参考

2
1
2

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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?