Well, there’s an argument that while
is a simpler form of for
eg. these are equivalent
while (<condition>) { }
for ( ; <condition> ; ) { }
Well, there’s an argument that while
is a simpler form of for
eg. these are equivalent
while (<condition>) { }
for ( ; <condition> ; ) { }