Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>js1</title>
- </head>
- <script>
- function f1()
- {
- var data=prompt('Enter any number:');
- if (isNaN(data))
- {
- alert("NO words");
- }
- else
- {
- alert("Num ="+data);
- }
- }
- </script>
- <body onload="f1()">
- </body>
- </html>
Add Comment
Please, Sign In to add comment