-2
如果我有兩個總變量與總個體變量。有沒有更容易的方法來獲得總和?更有效地添加JavaScript變量?
例子:
var first_one = 5;
var first_two = 5;
var second_one = 5;
var second_two = 5;
var firstTotal = first_one + first_two;
var secondTotal = second_one + second_two;
var total = firstTotal + secondTotal;
return total;
如何是更有效?鍵入時間較長,需要存儲更多字節,實現它的唯一方法是使用函數調用而不是簡單的操作符! – Quentin