Home
ActionScript
Blog

Chapter 1

Chapter 2

Chapter 3

Chapter 4

Chapter 5

Chapter 6

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Back Racer

<script>
// Back Racer
// Catherine Casuat 10-10-07
// Demonstrates counting backward through a for loop

var i = 0;

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