Home
ActionScript
Blog

Chapter 1

Chapter 2

Chapter 3

Chapter 4

Chapter 5

Chapter 6

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Count By Five

<script>
// CountByFive
// Catherine Casuat 10-10-07
// demonstrates how to vary the for loop

var i = 0;
for (i=5; i <= 100; i += 5){

alert(i);
} // end for loop

</script>