You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exer_8_forloops3.js 136B

12345678910
  1. let numbers = [2, -5, 13, 42]
  2. let total = 0;
  3. for (let i = 0; i < numbers.length; i++) {
  4. total += numbers[i];
  5. }
  6. console.log(total);