Skip to content

Instantly share code, notes, and snippets.

@heinthanth
Created September 1, 2019 03:57
Show Gist options
  • Save heinthanth/9fea095d80f1322b000b5a7bf9e386b3 to your computer and use it in GitHub Desktop.
Save heinthanth/9fea095d80f1322b000b5a7bf9e386b3 to your computer and use it in GitHub Desktop.
Continue
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