// Back Racer // Andy Harris // demonstrates counting backwards through a for loop var i = 0; for (i = 10; i > 0; i--){ alert(i); } // end for loop