Jieun Leezeunny.hashnode.dev·Mar 14, 2024JavaScript: 어떤 방식으로 함수 정의하는 것을 선호하세요? - (2)함수 표현식 - Function Expression hello(); var hello = function greeting() { console.log('Hello world!'); } 변수에 함수를 할당해서 정의하는 방식을 함수 표현식이라고 한다. 그럼 함수 표현식도 함수 정의니깐 함수 호이스팅이 될까? 정답은 '안 된다'이다. 변수에 함수를 할당하는 것이기 때문에 변수 호이스팅 방식을 따라간다. 그래서 위의 코드를 실행하면 und...36 readsJavaScriptAdd a thoughtful commentNo comments yetBe the first to start the conversation.