Created
September 1, 2019 03:57
-
-
Save heinthanth/9fea095d80f1322b000b5a7bf9e386b3 to your computer and use it in GitHub Desktop.
Continue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(int i = 0; i < 6; i++) { | |
if(i == 3) { | |
continue; | |
} | |
// do something | |
} | |
// will execute only 5 times though conditon is true for 6 times |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment