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_31 (2).js 90B

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