Q&A
Ask and answer questions to make information more available to wider audiences.
Jared Ackley @ackleyjared   06, Apr 2023 12:00 AM
debugging
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affects when debugging?
answers 1
 
Answer 1
Dean Akridge @akridgedean   06, Apr 2023 04:41 PM
This concept is called commenting out and this is the way to isolate some part of the code which scans possible reason for the error. Also, this concept helps to save time because if the code is not the reason for the issue it can simply be removed from comment.