質問編集履歴
2
微調整
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,13 +16,13 @@
|
|
16
16
|
|
17
17
|
const pdtf = new Date(dt.getFullYear(), dt.getMonth() - 1, 1, 0, 0, 1); // 先月
|
18
18
|
|
19
|
-
const tdtf = new Date(dt.getFullYear(), dt.getMonth(), 1, 0, 0, 1); // 今月
|
19
|
+
const tdtf = new Date(dt.getFullYear(), dt.getMonth(), 1, 0, 0, 1); // 今月
|
20
20
|
|
21
21
|
const ndtf = new Date(dt.getFullYear(), dt.getMonth() + 1, 1, 0, 0, 1); // 来月
|
22
22
|
|
23
23
|
// 各月の末日を取得
|
24
24
|
|
25
|
-
const pdtl = new Date(dt.getFullYear(), dt.getMonth(), 0, 0, 23, 59, 59); // 先月
|
25
|
+
const pdtl = new Date(dt.getFullYear(), dt.getMonth(), 0, 0, 23, 59, 59); // 先月
|
26
26
|
|
27
27
|
const tdtl = new Date(dt.getFullYear(), dt.getMonth() + 1, 0, 23, 59, 59); // 今月
|
28
28
|
|
1
コードを読みやすく微調整した
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,13 +16,13 @@
|
|
16
16
|
|
17
17
|
const pdtf = new Date(dt.getFullYear(), dt.getMonth() - 1, 1, 0, 0, 1); // 先月
|
18
18
|
|
19
|
-
const tdtf = new Date(dt.getFullYear(), dt.getMonth(), 1, 0, 0, 1);
|
19
|
+
const tdtf = new Date(dt.getFullYear(), dt.getMonth(), 1, 0, 0, 1); // 今月
|
20
20
|
|
21
21
|
const ndtf = new Date(dt.getFullYear(), dt.getMonth() + 1, 1, 0, 0, 1); // 来月
|
22
22
|
|
23
23
|
// 各月の末日を取得
|
24
24
|
|
25
|
-
const pdtl = new Date(dt.getFullYear(), dt.getMonth(), 0, 23, 59, 59);
|
25
|
+
const pdtl = new Date(dt.getFullYear(), dt.getMonth(), 0, 0, 23, 59, 59); // 先月
|
26
26
|
|
27
27
|
const tdtl = new Date(dt.getFullYear(), dt.getMonth() + 1, 0, 23, 59, 59); // 今月
|
28
28
|
|