Last active
May 28, 2021 20:35
-
-
Save jamiejohnsonkc/9b0352f3169a8eb6c60d9b02e197234e to your computer and use it in GitHub Desktop.
js loop output even numbers
This file contains 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
for (let i = 2; i <= 10; i++) { | |
if (i % 2 == 0) { | |
alert( i ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment