Duplicate Question
The question on this page has been marked as a duplicate question.
Original Question
How many times will this program print "hello"? var i = 10; while (i > 0) { println("hello"); i--; } JavaScript 0 10 i This cod...Asked by joe
How many times will this program print "hello"?
var i = 50;
while (i < 100) {
println("hello");
}
JavaScript
0
50
100
This code will loop infinitely
var i = 50;
while (i < 100) {
println("hello");
}
JavaScript
0
50
100
This code will loop infinitely
Answers
There are no human answers yet.
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.