teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

IE

2021/08/16 02:10

投稿

yambejp
yambejp

スコア117902

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