Axel Rauschmayer (2013-10-29T21:55:11.000Z)
domenic at domenicdenicola.com (2013-11-03T22:11:49.610Z)
I would love to have a way to write function calls infix. That may cover your use case as well. That is (strawman syntax): arg1 #func arg2 would be syntactic sugar for func(arg1, arg2) Advantages: more versatile, less grawlixy. Problem: would make much more sense with multiple dispatch (dynamic dispatch over the arguments), but that doesn’t seem to be in the cards for JavaScript.