我对编程很新,所以请原谅我的愚蠢问题。我已经构建了三个函数来根据相同的输入“金额”计算税率。我试图找出一种方法,我可以让用户输入一次金额,并获得所有三个函数的返回。他们在这里。
//Function 1
var normalrtfCalculator = function (amount) {
if (amount <= 150000) {
return Math.ceil(amount / 500) * 2;
} else if (amount <= 350000) {
if ((amount - 150000) <= 50000) {
return 600 + (Math.ceil((amount - 150000) / 500) * 3.35);
} else {
return 935 + (Math.ceil((amount - 200000) / 500) * 3.9);
}
} else {
if ((amount - 200000) <= 350000) {
return 2735 + (Math.ceil((amount - 200000) / 500) * 4.8);
} else if ((amount - 550000) <= 300000) {
return 4655 + (Math.ceil((amount - 555000) / 500) * 5.3);
} else if ((amount - 850000) <= 150000) {
return 7835 + (Math.ceil((amount - 850000) / 500) * 5.8);
} else {
return 9575 + (Math.ceil((amount - 1000000) / 500) * 6.05);
}
}
};
//Function 2
var mansionTax = function (amount) {
if (amount > 1000000) {
return amount * 0.01;
}
};
//Function 3
var lowincomertfCalculator = function (amount) {
if (amount <= 350000) {
if (amount <= 150000) {
return (Math.ceil(amount / 500)) * 0.5;
} else {
return 150 + (Math.ceil((amount - 150000) / 500)) * 1.25;
}
} else {
if ((amount - 150000) <= 400000) {
return 420 + (Math.ceil((amount - 150000) / 500) * 2.15);
} else if ((amount - 550000) <= 300000) {
return 2140 + (Math.ceil((amount - 550000) / 500) * 2.65);
} else if ((amount - 850000) <= 150000) {
return 3730 + (Math.ceil((amount - 850000) / 500) * 3.15);
} else {
return 4675 + (Math.ceil((amount - 1000000) / 500) * 3.4);
}
}
};
答案 0 :(得分:1)
只需要一个运行其他函数的函数并返回结果的对象:
var calculateTax = function(amount){
return {
rtf : normalrtfCalculator(amount),
mansion: mansionTax(amnount),
lowincome: lowincomertfCalculator(amount)
}
}
然后你可以这样称呼它:
var tax = calculateTax(99999);
要获得单个结果,您只需访问属性:
alert(tax.rtf)
,alert(tax.mansion)
和alert(tax.lowincome)
答案 1 :(得分:0)
所需的最小更改可能与在分配变量之前添加()
一样少。
类似的东西:
var amount = 100;
//Function 2
var mansionTax = (function () {
if (amount > 1000000) {
return amount * 0.01;
}
})();
这是一个有效的sample。
这将不再需要定义任何其他功能。