HOF and Closures
HOF:
A function that takes one or more functions as an arguments or returns a function as result.
Closure:
Closure allows the function to access the variables from the closing scope after leaving its scope in which it was declare.
Last updated