~Chao Li~

~Kumo no Mukou, Yakusoku no Basho~

 
~~~~

<html>
<head>
<title>Back Racer</title>
<script>
//Back Racer
//Chao Li. October 23, 2007.
//demonstrates counting backward through a for loop

var i = 0;

for (i = 10; i > 0; i--)
{
alert (i);
}// end for loop
</script>
</head>

<body>
<center><center>
<h1>Back Racer<br></h1>
</center>
<hr>
</body>
</html>

 
 
 
~~~~