What is this ‘Lambda’ everyone keeps speaking of?
Functions without a name Simply put, a lambda is a function without a name, or an anonymous function. A small piece of executable code, that can be passed around as if it were a variable. In JavaScript: function () {}; // very simple Let’s see now some uses for these lambdas. Abstracting boilerplate code Lambdas … Read more