代码之家  ›  专栏  ›  技术社区  ›  PineNuts0

JavaScript:将除法函数作为参数接受到另一个返回新函数的函数中-->返回商

  •  5
  • PineNuts0  · 技术社区  · 5 年前

    我有一个划分两个输入参数的函数:

    const divide = (x, y) => {
        return x / y;
      };
    

    我有第二个函数,它以divide函数作为输入参数并返回一个新函数。

    function test(func) {
    
        return function(){
            return func(); 
        }
    }
    
    const retFunction = test(divide);
    retFunction(24, 3)
    

    我期望返回值为8(24/3)。但我得到的是“NaN”的返回输出。我做错什么了?

    1 回复  |  直到 5 年前
        1
  •  8
  •   KevBot    5 年前

    您需要将可能的参数传递给函数: ...args :

    const divide = (x, y) => {
      return x / y;
    };
    
    function test(func) {
      return function(...args) {
        return func(...args);
      }
    }
    
    const retFunction = test(divide);
    const result = retFunction(24, 3);
    console.log(result);