Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created May 1, 2019 16:53
Show Gist options
  • Save jlittlejohn/c8f9af47e2c2e998dc2e1f34397cadbd to your computer and use it in GitHub Desktop.
Save jlittlejohn/c8f9af47e2c2e998dc2e1f34397cadbd to your computer and use it in GitHub Desktop.
JS: Do / While Loop Example
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