#gamedev (@mildlyegames, @whoisnoahgames), Game Design/Programming/Unity
See more
Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient.
Partial application is basically a design pattern where your function returns another function that takes an argument. For example, you can call your function like this: myFun(arg1)(arg2), which is equivalent to:
myFun(arg1)(arg2)