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

Answers

There are no human answers yet.
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions