我是JS編程的新手,想知道什麼是循環函數內多個參數的最佳方法。JS函數中的循環參數
作爲一個例子,我想計算一個複合利息公式,用一系列利率(var y)和投資的不同時間範圍(var z)打印出結果。
我可以讓我的代碼與一個循環一起工作(請參見下文),但不能弄清楚如何使它能夠與兩個變量一起工作(循環遍歷x和y)。 ý應具有以下循環:
爲(Y = 0; Y> = 10; Y ++)
你能指向我入方向?
非常感謝。
var futureValue = function formula (x,y,z) {
a = x * (Math.pow (1+y/100, z)); // where x is starting amount of money(principal), y is real interest rate in %, and z is the number of years for the investment
return a;
}
for (z = 0; z <20; z++){
console.log(futureValue (10000,5,z));
}
}
也許你STA rt正確命名參數,如資本,利率和年 –
請添加通緝令。 –