CODE :- <html> <head> <title>While Loop</title> <script type="text/javascript"> function check() { var no=10,i=1;
while(i<=no) { document.write(i+"<br>"); i++; } } </script> </head> <body> <form name="form1" method="post"> <input type="button" name="sub" value="click me" onclick="return check()"> </form> </body> |
No comments:
Post a Comment