✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
при якій умові, ця функція поверне 5, const add = (a) => { let sum = a; const func = (b) => { if (b) { sum += b; return func; } else { return sum; }}; return func;};