function Func01() { const apple = "사과"; return function Func02() { const banana = "바나나";; console.log(apple); console.log(banana); } } Func01()()