Versal Group interview question

Var add5 = _.partial(sum, 5); add5(6)=11 Write partial.

Interview Answer

Anonymous

9 Jan 2018

This could have been answered as a simple case of using .bind . Instead, I believe I used the convoluted Array.prototype.slice on the arguments array-like-object and a closure.