-2
我想使用for
。有兩件事,一是console.log在for語句中不起作用。其次,它不是總結。下面的代碼:如何在數組中獲得這些數字的總和?
var numbers = [1,2,3,4];
var total = 0;
for (var i= 0; numbers.length < i; i++){
total += numbers[i];
// console.log(total); doesn't work
}
// console.log(total); gives 0