ironSource interview question

Write a function which returns a funtion

Interview Answer

Anonymous

9 Sept 2018

function multiply(x) { return function (y) { return x * y; } }