0
Do you guys have any particular techniques you use to follow program?
I think I am pretty good at following the code and understanding it general (especially when there are comments). I struggle a lot when I come across functions with in functions especially when the same function calls its self. Or if there is a for loop within the for loop. I always tend to get lost when I am trying to run the code in my head.
2 Réponses
0
honestly it is like following a specific logic. So run throught the code step by step.for example when you start looping u will continue to loop until a specific condition is met. a loop inside a loop same thing u cant go out of the outer function unless the inner is satisfied
0
thanks for the reply guys. I think I going to try the debugger. I never actually used it. but gonna learn how.