Skip to content

Instantly share code, notes, and snippets.

@interdigitize
Created April 23, 2016 05:57
Show Gist options
  • Save interdigitize/73516037b35587b72989c61af6840293 to your computer and use it in GitHub Desktop.
Save interdigitize/73516037b35587b72989c61af6840293 to your computer and use it in GitHub Desktop.
A while loop that continues to prompt until an input is entered that is greater than 0 or until the cancel button is clicked.
var input;
while(true){
input = prompt('Enter an integer greater than 0');
if (input > 0){
break;
} else if (input === null) {
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment