0
Why do we use three curly braces in a for loop. Is it necessary..
3 odpowiedzi
+ 5
They just show which part of the code should be executed with the for loop!
+ 4
The curly brackets suggest that everything contained inside the brackets is part of the loop. Without them, it'd be hard to tell where the loop ends.