Functional Programming via Anonymous Delegates and Script#
Posted by: Nikhil Kotharis Weblog,
on 03 Aug 2006 |
View original | Bookmarked: 0 time(s)
Joel Spolsky published an article around functional programming, and how it enables things like separating the logic that traverses a data structure, from the code that needs to perform some logic over each object in the data structure. He uses JavaScript, the ability to define anonymous functions and using them as parameter values in his samples to illustrate how it provides a better model compared to languages like Java. In his post, he asks "Can your programming language do this?" Check it out,...