Hi,
This problem annoyed me for a while now and i need help 🙁
I have while loops like this:
while(..){
....
while(..){
....
while(..){
....
while(..){
....
// up to n while loops
}
}
}
}
If i have a var $loops = 10. Then i want 10 nested loops.
How can i convert this to a recursive function and make it run up to n loops..
Plz help!
Thanks