回答編集履歴

1

chousei

2020/06/10 00:26

投稿

yambejp
yambejp

スコア114883

test CHANGED
@@ -35,3 +35,33 @@
35
35
 
36
36
 
37
37
  ```
38
+
39
+
40
+
41
+ リファクタリングするとこんなかんじ
42
+
43
+ ```javascript
44
+
45
+ window.addEventListener('DOMContentLoaded', ()=>{
46
+
47
+ document.querySelector("#chat-send").addEventListener("click",()=>{
48
+
49
+ document.querySelector("body").appendChild(
50
+
51
+ [document.createTextNode(
52
+
53
+ document.querySelector("#chat-input").value
54
+
55
+ )].reduce(
56
+
57
+ (x,y)=>(x.appendChild(y),x),document.createElement("p")
58
+
59
+ )
60
+
61
+ )
62
+
63
+ });
64
+
65
+ });
66
+
67
+ ```