Immediately Invoked Function Expression
-
First-Class Functions and IIFEDynamicPL/Javascript 2019. 10. 24. 00:31
1. Overview We can pass functions as arguments and return it and store it into variables because functions are always first-class functions in Javascript because they are effectively objects. 2. Description 2.1 Passing Functions as Arguments These functions are called "callback function" because they are functions that we pass into functions that will then call them later. var years = [1990, 196..