JavaScript program to print numbers from 1 to 10 using while loop
Following program shows you how to print numbers from 1 to 10 using while loop.
var input = 1;
while (input <= 10) {
console.log(input);
input++;
}
Output:
1
2
3
4
5
6
7
8
9
10
Following program shows you how to print numbers from 1 to 10 using while loop.
var input = 1;
while (input <= 10) {
console.log(input);
input++;
}
1
2
3
4
5
6
7
8
9
10