Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function verifyPassword(){
  2. passW = prompt ("Password:");
  3.  
  4. if (passW = 'Pass123'){
  5. document.write ('Your password is correct');
  6. }
  7. else {
  8.  
  9. document.write ('Your password is incorrect');
  10. }
  11. }
  12.  
  13. verifyPassword();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement