ironSource interview question

Write a function which returns a funtion

Interview Answer

Anonymous

Sep 9, 2018

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