Skip to content

Instantly share code, notes, and snippets.

@uchcode
Created April 11, 2016 05:28
Show Gist options
  • Select an option

  • Save uchcode/7ae81d0e0a41decbbd565fff8899897f to your computer and use it in GitHub Desktop.

Select an option

Save uchcode/7ae81d0e0a41decbbd565fff8899897f to your computer and use it in GitHub Desktop.
次の再初期化式の指定がなく、刻みが不定の場合
// 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