Last active
June 27, 2022 08:00
-
-
Save OMGZui/a967a4ad50fa3e1bbc201a0da0c0e96b 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
// A | |
$count = 0; | |
while ($count < 10) { | |
// ... | |
$count++; | |
} | |
// B | |
$count = 0; | |
while (++$count < 10) { | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment