Created
April 28, 2016 11:08
-
-
Save sumitasok/ef263e5ea3afcb2cd5955eecbf6e09a4 to your computer and use it in GitHub Desktop.
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
why you need break and contibue | |
for() { | |
if { | |
break | |
} else { | |
body; | |
} | |
} | |
func () { | |
for() { | |
ifElse() | |
} | |
} | |
func ifElse() { | |
if { | |
return | |
} | |
body; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment