回答編集履歴
1
変数の巻き上げ\(Variable hoisting\)
answer
CHANGED
@@ -18,4 +18,10 @@
|
|
18
18
|
console.log(i); // ReferenceError: i is not defined
|
19
19
|
```
|
20
20
|
|
21
|
+
### 変数の巻き上げ (Variable hoisting)
|
22
|
+
|
23
|
+
変数の巻き上げは下記スレッドが参考になると思います。
|
24
|
+
|
25
|
+
- [JavaScript - 関数と変数の巻き上げの違いとは(33002)|teratail](https://teratail.com/questions/33002)
|
26
|
+
|
21
27
|
Re: YamasakiRintaro さん
|