Answers for "meaning recursion"

0

recursion

function loop(x) {
  if (x >= 10) // "x >= 10" is the exit condition (equivalent to "!(x < 10)")
    return;
  // do stuff
  loop(x + 1); // the recursive call
}
loop(0);
Posted by: Guest on December-23-2020

Browse Popular Code Answers by Language