回答編集履歴
1
IE
answer
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
たとえば
|
2
2
|
```javascript
|
3
3
|
target_days_honten=[...target_days_honten,todays,tomorrows];
|
4
|
+
```
|
5
|
+
IE対応が必要なら
|
6
|
+
```javascript
|
7
|
+
target_days_honten.push(todays);
|
8
|
+
target_days_honten.push(tomorrows);
|
4
9
|
```
|