@663,198
Recursion would be
function recursiveFunction(/*some arguments*/){
//some stuff
return recursiveFunction(/*some input parameters*/);
}
It doesn’t really matter though. Anything that can be done using recursion can be done with iteration. It’s just, some things are easier to do one way than the other. Really I was joking. You can call the function whatever you want. It is recursion in the mathematical sense.