Skip to content

Instantly share code, notes, and snippets.

@yhoon3002
Created April 17, 2022 15:26
function Func01() {
const apple = "사과";
return function Func02() {
const banana = "바나나";;
console.log(apple);
console.log(banana);
}
}
Func01()()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment