回答編集履歴
1
IE
test
CHANGED
@@ -5,3 +5,13 @@
|
|
5
5
|
target_days_honten=[...target_days_honten,todays,tomorrows];
|
6
6
|
|
7
7
|
```
|
8
|
+
|
9
|
+
IE対応が必要なら
|
10
|
+
|
11
|
+
```javascript
|
12
|
+
|
13
|
+
target_days_honten.push(todays);
|
14
|
+
|
15
|
+
target_days_honten.push(tomorrows);
|
16
|
+
|
17
|
+
```
|