Set loop step to 5 in for loop
|
|
<html> <head> <title>Count By Five</title> <script> var i = 0; for (i=5; i <= 100; i += 5){
alert (i); }
</script> </head>
<body> <h1>Count By Five<br></h1> </body> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
|