TinyChan

New reply in topic: Bytebeat/Floatbeat/Funcbeat

You are not recognized as the original poster of this topic.

:

You are required to fill in a captcha for your first 5 posts. Sorry, but this is required to stop people from posting while drunk. Please be responsible and don't drink and post!
If you receive this often, consider not clearing your cookies.

Please familiarise yourself with the rules and markup syntax before posting.


Replying to Anonymous L…

@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.