Advertisement
1xptolevitico69

Prompt

Nov 16th, 2019
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width">
  7. <style></style>
  8. </head>
  9. <body>
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16. <script>
  17. i=0;
  18.  Array = ["India","china","japan","America","australia"];
  19.  Country = prompt("Enter your country name ( LowerCase )");
  20.  
  21. x = setInterval(Check,0);
  22. function Check(){
  23. Array = Array.map(function(x){ return x.toLowerCase(); })
  24. if(Country=='' ){
  25. location.reload();
  26. }else if(Array[i]==Country){
  27. alert("Your country is listed");
  28. clearInterval(x);
  29. }else{
  30. i++;
  31. if(i==Array.length){
  32. alert("Your country is not listed");
  33. }
  34. }
  35. }
  36.  
  37.  
  38.  
  39. </script>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement