Recently, there was this problem I encountered and it made me realize there is this really important technique in JavaScript and other languages that I didn’t fully understand. I believe a lot of you have seen functions like these: const result = add(a, b, c) // or
const result = add(a)(b)(c)…