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
What will be printed to the console when the following program is run, and a user clicks the mouse three times?
function main() { mouseClickMethod(printMessage); } function printMessage() { console.log("that tickles"); } main();
that tickles
that tickles that tickles that tickles
printMessage
printMessage printMessage printMessage