DEV Community

Discussion on: How to make functions partially applicable in JavaScript

Collapse
 
inf3rno profile image
inf3rno • Edited

It can be useful if you design a library and you are thinking on the proper api. It can be combined for example with fluent interface: x(a).y(b)(c) etc. So it is good only for sugar syntax.