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:
function main() { asterisk(3); asterisk(5); } function asterisk(num) { let result = ""; while (num > 0) { result += "*"; num--; } console.log(result); } main();
What will be the output of the program?
*** *******
***** ***
*** *****
*** ***