回答編集履歴

2

nit

2022/01/11 01:37

投稿

int32_t
int32_t

スコア21695

test CHANGED
@@ -14,6 +14,6 @@
14
14
 
15
15
  let d = b.getDate();
16
16
 
17
- console.log(`明日の日付${y}/${m}/${d}");
17
+ console.log(`明日の日付${y}/${m}/${d}`);
18
18
 
19
19
  ```

1

コード追加

2022/01/11 01:37

投稿

int32_t
int32_t

スコア21695

test CHANGED
@@ -1 +1,19 @@
1
1
  「参考にしたコード」でちゃんと月をまたげるはずです。試してみてください。
2
+
3
+
4
+
5
+ ```js
6
+
7
+ let b = new Date();
8
+
9
+ b.setDate(b.getDate() + 1);
10
+
11
+ let y = b.getFullYear();
12
+
13
+ let m = b.getMonth() + 1;
14
+
15
+ let d = b.getDate();
16
+
17
+ console.log(`明日の日付${y}/${m}/${d}");
18
+
19
+ ```