<html>
<head>
<title>While loop example</title>
</head>
<body bgcolor="#FFFFFF">
<script language="JavaScript">
<!-- Hide code

// Create a counter variable
// Analysis

var counter = 1;

// Count from 1 to 20
// Analysis

while(counter <=20)
	{
	document.writeln(counter + "<br>");
	counter++;
	}

//  End script -->
</script>
</body>
</html>

Back to example page or execute code