回答編集履歴

1

.

2024/09/03 03:13

投稿

int32_t
int32_t

スコア21559

test CHANGED
@@ -4,7 +4,8 @@
4
4
 
5
5
  ```js
6
6
  for (let e of target) {
7
+ const after = document.createElement('p');
7
- e.appendChild(document.createElement('p')).textContent = "これはメルカリShops";
8
+ e.appendChild(after).textContent = "これはメルカリShops";
8
9
  }
9
10
  ```
10
11