강의

멘토링

로드맵

Inflearn Community Q&A

kylesong273566's profile image
kylesong273566

asked

Functional Programming with JavaScript (ES5)

First-class functions, add_maker, executing functions as functions

일급함수 - 함수에 인자를 함수로 넣을 때...

Written on

·

205

0

함수에 인자를 함수로 넣을 때 

var example1 = (function(){

return {

  }

})();

이 것도 함수에 인자를 함수로 넣은 것인가요??

 

 

함수형-프로그래밍javascript

Answer 1

0

mduniv님의 프로필 이미지
mduniv
Instructor

아닙니다^^

kylesong273566's profile image
kylesong273566

asked

Ask a question