回答編集履歴

1

2019/10/12 02:40

投稿

t-cool
t-cool

スコア71

test CHANGED
@@ -1,10 +1,14 @@
1
1
  ```
2
+
3
+ function hello(event){console.log(event)}
2
4
 
3
5
  window.addEventListener('click', hello);
4
6
 
5
- function hello(event){console.log(event)}
7
+ ```
6
8
 
9
+
10
+
7
- ```
11
+ Windowをクリックすると、イベントオブジェクトがhelloに渡されます。
8
12
 
9
13
 
10
14