0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

new Dateに入れる引数による挙動の違い

Posted at

Date型に入れる引数でちょっとつまづいたので、メモ。引数の形を変えると、出力される値も変わります。

console.log(new Date(`2020/7/7 00:00:00`));
// Tue Jul 07 2020 00:00:00 GMT+0900 (日本標準時)
console.log(new Date(2020, 7, 7, 0, 0, 0, 0));
// Fri Aug 07 2020 00:00:00 GMT+0900 (日本標準時)
console.log(new Date(`2012-10-12`));
// Fri Oct 12 2012 09:00:00 GMT+0900 (日本標準時)

2つ目の指定の仕方は月が0から始まります。なので、7月を指定したければ、
3つ目は下記サイトで紹介されているように時間の指定が、9時になっています。
間違えないようにセットするには、1つ目の指定にするのが良さそうです。

参考

0
0
1

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?