Answers for "sum to num"

1

how to add up all the numbers in between 0 and that number

function addUp(num) {
  if (num === 1) return 1;
  return num + addUp(num - 1);
}
Posted by: Guest on April-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language