- Home
- Javascript Examples
- While Loop
JS - While Loop
विवरण :
कोई विवरण नहीं है |
सोर्स कोड :
<!DOCTYPE html> <html> <head> <title> Loop - while loop </title> <body> <script type="text/javascript"> var i=0; while( i <= 10 ){ document.write( "value of i is " + i + "<br>" ); i++; } </script> </body> </head> </html>