Oddbean new post about | logout
 why does everyone call them arrow functions in #javascript instead of lambdas or closures? is it there to not scare devs off or is there another reason 
 @17e63ed1 To distinguish between non-arrow functions.

function () {...} and () => {...} are not actually semantically equivalent 😩