Created
May 1, 2019 16:53
-
-
Save jlittlejohn/c8f9af47e2c2e998dc2e1f34397cadbd to your computer and use it in GitHub Desktop.
JS: Do / While Loop Example
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
do { | |
text += "The number is " + i; | |
i++; | |
} | |
while (i < 10); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment