/** * 灵雀云前端面试题:实现 multiply 函数 * 支持链式调用并返回两数之和 */ function multiply(){ } const result = multiply(3)(4); console.log(result); // 12