2-11 Undefined
千萬不要自己將變數的值設成undefined,以保證undefined都是js engine 所設的,方便debug
作者覺得叫notset 比較合適 😤
1 | console.log(a); |
- a does not exist in memory
1 | var a; |
- a exists in memory, but is set to a special value - undefined
1 |
|
2-10 Creation and hoisting
- hoisting : before js code is run line by line, js engine set memory space for the variables
- all variables is initialized to undefined in js
1 |
|
1 |
|