Home

Assignment 2

A description or introduction


You can use iFrame to embed project pages. You might want to do this if you have multiple versions or iterations of a project.

View at full scale

				
				
// you can use pre to share your javascript code
// note that you'll need to remove all indents as pre will capture every space and tab
// this is also a good way to share your poem.txt projects
var min = 1;
var max = 16;

for ( counter = min; counter <= max; counter++ ) {

	// call the addSquare function
	// pass the minimum number to that function
	thAddSquare( counter );

} // end of loop