Aniket_Goku

js1

Apr 22nd, 2021 (edited)
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.     <head>
  3.         <title>js1</title>
  4.     </head>
  5.     <script>
  6.         function  f1()
  7.         {
  8.             var data=prompt('Enter any number:');
  9.             if (isNaN(data))
  10.             {
  11.                 alert("NO words");
  12.             }
  13.             else
  14.             {
  15.                 alert("Num ="+data);
  16.             }
  17.         }
  18.     </script>
  19.     <body onload="f1()">
  20.        
  21.     </body>
  22.  
  23. </html>
Add Comment
Please, Sign In to add comment