2010
2005
SitePoint Blogs » Blog Archive » Closures and executing JavaScript on page load
(via)createAdder(x) is a function that returns a function. In JavaScript, functions are first-class objects: they can be passed to other functions as arguments and returned from functions as well. In this case, the function returned is itself a function that takes an argument and adds something to it.
1
(2 marks)