Created
April 11, 2016 05:28
-
-
Save uchcode/7ae81d0e0a41decbbd565fff8899897f 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
| // Non C-Style for statement | |
| var i = 0; while (i < 10) { | |
| console.log(`${i}`) | |
| if ((i * i) % 2 == 0) { | |
| i += 1 | |
| } else { | |
| i += 2 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment