Functions
Problems based on functions
Easy
20 minutes
Implement Currying
Create a function `sum` that implements currying. Currying is a transformation of functions that translates a function from being callable as f(x, y, ...
Easy
10 minutes
Guess The Output II
Given an object with functions first() and second() - Guess the output of the given snippet that contains two function calls, one is an arrow function...