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_function2.js 219B

12345678910111213141516171819
  1. /* declaratie variablen */
  2. 'use strict'
  3. /* function */
  4. function sumToN(n) {
  5. let sum = 0;
  6. for (let i = 0; i <= n; i++) {
  7. sum += i;
  8. }
  9. return sum;
  10. }
  11. /* output */
  12. console.log((sumToN(10)));