回答編集履歴
1
edit
test
CHANGED
@@ -1 +1,27 @@
|
|
1
1
|
jquery-3.4.1.min.jsの中で`$()`が定義されているから。
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
エラー
|
6
|
+
|
7
|
+
```js
|
8
|
+
|
9
|
+
a();
|
10
|
+
|
11
|
+
const a = function(){console.log("a")}
|
12
|
+
|
13
|
+
//ReferenceError
|
14
|
+
|
15
|
+
```
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
実行される
|
20
|
+
|
21
|
+
```js
|
22
|
+
|
23
|
+
const a = function(){console.log("a")}
|
24
|
+
|
25
|
+
a();
|
26
|
+
|
27
|
+
```
|