ecmascript , 6th edition might bring us fat arrow notation – douglas crockford on fat arrows function (x) { return x * x; } // becomes (x) => x * x douglas’ post concerns itself mostly with the intricacies of how this is bound to the function object and what the fat arrow notation might bring, what i see is something completely different. proper lambdas! that’s right, functions that implicitly ret
