Pregunta de entrevista de ironSource

Write a function which returns a funtion

Respuesta de la entrevista

Anónimo

9 de sept de 2018

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