Is there a framework or post processor for JavaScript that supports lambda syntax like in C#?
Function definitions in CoffeeScript seem to look like lambdas but I ha
Javascript has very nice anonymous functions that allows you to create lambdas anyWhere you need as a function but the implementation comes with some much words and scope creation repeating:
function(name){
return "Hello, " + name;
}
Thanks to EcmaScript 2015 lambda expresion is now available for javaScript with simpler syntax as Arrow Function
(name) => "Hello, " + name