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_32 (2).js 103B

12345678
  1. let i = 0;
  2. let total = 0;
  3. for (let i = 3; i <= 16; i++) {
  4. console.log(total);
  5. total = total + 2;
  6. }