我有一个计算税金的函数。

function taxes(tax, taxWage)
{
    var minWage = firstTier; //defined as a global variable
    if (taxWage > minWage)
    {
        \\calculates tax recursively calling two other functions difference() and taxStep()
        tax = tax + difference(taxWage) * taxStep(taxWage);
        var newSalary = taxWage - difference(taxWage);
        taxes(tax, newSalary);
    }
    else
    {
        returnTax = tax + taxWage * taxStep(taxWage);
        return returnTax;
    }
}

我不明白为什么它不能停止递归。

最佳答案

在您的职能部门中:

if (taxWage > minWage) {
    // calculates tax recursively calling two other functions difference() and taxStep()
    tax = tax + difference(taxWage) * taxStep(taxWage);
    var newSalary = taxWage - difference(taxWage);
    taxes(tax, newSalary);
}

您没有从函数或设置returnTax返回值。当您不返回任何内容时,返回值为undefined

也许,您想要这样:
if (taxWage > minWage) {
    // calculates tax recursively calling two other functions difference() and taxStep()
    tax = tax + difference(taxWage) * taxStep(taxWage);
    var newSalary = taxWage - difference(taxWage);
    return taxes(tax, newSalary);
}

10-04 22:06