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
Consider the following program:
let x = 0; function main() { bar(); console.log(x) } function foo() { x++; } function bar() { foo(); foo(); foo(); } main();
What is the output of the program?
0
1
3
undefined