hoisting
호이스팅(Hoisting)
console.log(a); // undefined
var a = 1;console.log(b); // ref error - not defined
let b = 1;오해
호이스팅
Last updated
console.log(a); // undefined
var a = 1;console.log(b); // ref error - not defined
let b = 1;Last updated
const a = function() {
//...some code
}function a() {
//...some code
}