Count By Five

// CountByFive
// Andy Harris
// demonstrates how to vary the for loop

var i = 0;
for (i=5; i <= 100; i += 5){
  alert (i);
} // end for loop