Skip to content

Instantly share code, notes, and snippets.

@TessMyers
Created February 10, 2014 07:14
Show Gist options
  • Save TessMyers/8911654 to your computer and use it in GitHub Desktop.
Save TessMyers/8911654 to your computer and use it in GitHub Desktop.
var checkPassword = function() {
var query = prompt("what's the password?");
if(query === "password"); {
alert("Awesomesauce, that's right!");
} else {checkPassword()}
}
}
}
@paulmand3l
Copy link

var checkPassword = function() {
  var query = prompt("what's the password?");
  if(query === "password") {
    alert("Awesomesauce, that's right!");
  } else {
    checkPassword();
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment