Skip to content

Instantly share code, notes, and snippets.

@heinthanth
Created September 1, 2019 03:43
Show Gist options
  • Save heinthanth/e672ce992586320f256ce0db8bddc379 to your computer and use it in GitHub Desktop.
Save heinthanth/e672ce992586320f256ce0db8bddc379 to your computer and use it in GitHub Desktop.
Do While
var x = 3;
do {
// will execute once although condition is x != 3
} while(x != 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment