๐ฅ๐บ๐ผ Hoisting ์๊ฐํ ์๋ฃ
์ง์ ๋ ์ด๊ธฐ ๊ฐ ์์ดย var
ย ํน์ย let
ย ๋ฌธ์ ์ฌ์ฉํด์ ์ ์ธ๋ ๋ณ์๋ย undefined
๊ฐ์ ๊ฐ์ต๋๋ค.
์ ์ธ๋์ง ์์ ๋ณ์์ ์ ๊ทผ์ ์๋ํ๋ ๊ฒฝ์ฐย ReferenceError
ย ์์ธ๊ฐ ๋ฐ์ํฉ๋๋ค.
์ฝ๋์ Lexical scope๊ฐ Global scope์ธ ๋ช ๋ น์ ํํ์ฌ ์์์๋ถํฐ ์์ฐจ์ ์ผ๋ก ํ๋๋ค.
function
ํค์๋๋ก ์ ์๋ ํจ์์ ์ด๋ฆ์ ๋ณ์๋ช
์ผ๋ก ํ๊ณ ,๐ก ๋จ,
const foo = function x(){ โฆ }
๋ const๋ก ์ ์๋ ๋ณ์foo
์ ๋ํ ์ ์์ด๋ฏ๋ก,function
ํค์๋๋ก ์ ์ํ ํจ์๊ฐ ์๋๋ค.
var, let, const
๊ฐ ํค์๋ ๋ณ ๋ณ์์ ์๋ช
์ฃผ๊ธฐ์ ๋ฐ๋ผ ์ ์ธ ๋๋ ์ด๊ธฐํ๊น์ง ์งํํ๋ค.Global scope์ ๋ชจ๋ ์ฝ๋๋ฅผ ์์์๋ถํฐ ์์ฐจ์ ์ผ๋ก ํ ์ค์ฉ ์คํํ๋ค.
๐ก Block scope์ ๊ด๊ณ์์ด ๋ชจ๋ ์ ์ธ์ ์์๋ ํด๋น scope์ ๋ํ Creation Phase์์ declaration ์ ์ธ์ ์งํํ๋ค.
(๋จ, var
๋ณ์๋ function
ํค์๋๋ก ์ ์๋ ํจ์๋ผ๋ฉด
์คํ ์ดํ ๊ฒฐ๊ณผ๋ Block Scope ์์ ์ํ์ง ์๊ณ , ์ต์์ Scope์ ์ํ๊ฒ ๋๋ค.)
Understanding Javascript Engine Phases
, Global
, Lexical
, Block
scope From JS: ๋ณ์์ ์ธ๊ณผ Scope
Creation
Phase์ ์ข
๋ฃ ํโExecution
Phase์ด๋ค.console.log(a); // undefined
var a;
๐ก ํจ์์ ๋ณ์๋ ์ด๊ธฐํ ์์ ์ด ๋ค๋ฅด๋ค.
var a;
console.log(a); // *f* a() {}
function a() {}
console.log(a); // *f* a() {}
var a = 1;
console.log(a); // 1
function a() {}
console.log(a); // 1
function a() {}
console.log(a); // *f* a() {}
var a = 1;
console.log(a); // 1
๐ก ๋์ผํ ์ด๋ฆ์ ํจ์๊ฐ ์๋ค๋ฉด, ์ดํ ๋ด์ฉ์ด ์ด์ ๋ด์ฉ์ Overrideํ๋ค.
function a() { 1; }
console.log(a); // ฦ a() {}
function a() {}
console.log(a); // ฦ a() {}
var a = 1;
console.log(a); // 1
๐ก Block scope๋ Creation Phase๋ฅผ ๊ฑด๋๋ฐ๊ณ , Execution Phase์๋ง ์คํ๋๋ค.
{ function a() { 1; } }
console.log(a); // ฦ a() { 1; }
function a() {}
console.log(a); // ฦ a() { 1; }
var a = 1;
console.log(a); // 1
scope chaining
function scope === local scope
์ฐ๋ฆฌ๊ฐ ์คํํ๋ ์คํฌ๋ฆฝํธ๋ ์ฝ ์คํ์ ์ฌ๋ผ์ค๋ ํจ์๋ ๋๊ฐ๋ค.
์ฆ, ํจ์๋ฅผ ์คํํ ๋๋ ๋ ๋ค๋ฅธ ์คํฌ๋ฆฝํธ๋ฅผ ์คํํ๋ ๊ฒ์ผ๋ก ์๊ฐํ๋ฉด ๋๋ค.
Creation Phase๋ถํฐ Execution๊น์ง ์ฒ์๋ถํฐ ๋ค์
๊ทธ ์์ ์์ผ๋ฉด ์ํ ๊ป์ง ๊น๋ฏ ๊ฐ์ฅ ๊ฐ๊น์ด ์ค์ฝํ์์ ์ฐพ์์ด
๊ทธ๊ฒ ๋ฐ๋ก scope chaining
๐ก scope chaining
๊ฐ์ฅ ๊ฐ๊น์ด scope์ ์กด์ฌํ๋ ๋ณ์๋ฅผ ๊ฐ์ ธ์จ๋ค.
function a() {
console.log(a); // ฦ a() { console.log(a); }
}
a();
function a() {
console.log(a); // undefined
var a = 1;
}
a();
๐ก scope chaining ์์ฉ
function a() {
console.log(eval); // undefined
{
function eval() {}
}
console.log(eval); // ฦ eval() {}
}
console.log(eval); // ฦ eval()
a();
console.log(eval); // ฦ eval()
console.log(a); // undefined
{
function a() {}
}
๐ก scope chaining: let๊ณผ var์ ์ฐจ์ด
function a() {
console.log(b); // undefined
}
let b;
a();
function a() {
console.log(b); // ReferenceError
}
a();
let b;
function a() {
console.log(b); // undefined
}
a();
var b;
var์ function์ Creation Phase์ ์ ์๋ ๋,
์ต์์ ์ค์ฝํ์ ์ ์๋๋ค.
๋ฐ๋ผ์, function์ ๊ตฌํ๋ถ๋ผ๋ฉด function scope == local scope์ ์กด์ฌํ๊ฒ ๋๋ค.
Event Loop์ ๋ํด์ Event Loop ์ฐธ๊ณ