A While Loop That Decrements from 10 to 1 : While « Language Basics « JavaScript DHTML
- JavaScript DHTML
- Language Basics
- While
A While Loop That Decrements from 10 to 1
<HTML>
<BODY>
<H1>
<SCRIPT>
var counter = 10;
while (counter > 0)
{
document.write (counter + "<br>");
counter--;
}
</SCRIPT>
</H1>
</BODY>
</HTML>
Related examples in the same category