jlittlejohn
5/1/2019 - 4:53 PM

JS: While Loop Example

JS: While Loop Example

while (i < 10) {
  text += "The number is " + i;
  i++;
}