9
9

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 5 years have passed since last update.

JavaScriptで月末日を取得する

Posted at

超小ネタ。
しかも、なぜこれで月末日が取得できるのか、いまいち分かっていない…。

var m = 7;
var lastDay = new Date(2015, m + 1, 0).getDate();
console.log(lastDay); // 31

参考

date - Calculate last day of month in javascript - Stack Overflow ← これの1番上の回答

9
9
4

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?