You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
272 B
JavaScript

<html>
<head>
<title>Happy Codings :-) JavaScript Code Examples</title>
</head>
<body>
<H1>
<SCRIPT>
var counter = 10;
while (counter > 0)
{
document.write (counter + "<br>");
counter--;
}
</SCRIPT>
</H1>
</body>
</html>