JavaScript Tutorial - 1 - a possible answer to Task 3
<html> <head> <title>One to Ten</title> </head> <body> <script> for (var n=1; n<11; n++) { document.write(n) document.write(" ") } </script> </body> </html> 1 2 3 4 5 6 7 8 9 10
HOME Table of Contents