Skip to content

Instantly share code, notes, and snippets.

@tigransimonyan
Last active July 29, 2018 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tigransimonyan/c4810eaf0e90bf9bd8fb0a94c8457d57 to your computer and use it in GitHub Desktop.
Save tigransimonyan/c4810eaf0e90bf9bd8fb0a94c8457d57 to your computer and use it in GitHub Desktop.
const condition = false;
while(condition){
alert("while");
}
do {
alert("do while");
} while(condition)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment