Explore what CodeHS has to offer for districts, schools, and teachers.
Click on one of our programs below to get started coding in the sandbox!
View All
A for loop written, or "nested", inside of another for loop. For example: for(var i = 0; i < 5; i++){ for(var j = 0; j < 3; j++){ println(i + j); } println(""); }