vKarl
0
Q:

while loops js

while (10 > 1) {
  console.log("HI")
}
1
while (i < 10) {
  text += "The number is " + i;
  i++;
}
8
while(condition) {
  //whatever
}
4

while (i < 10) {

    text += "The number is " + i;

    i++;
}

  
-1

New to Communities?

Join the community