1/*We can use the while loop to create any type of iteration we wish,
2including anything that we have previously done with a for loop.
3For example, consider our initial for loop example.*/
4
5for (let i = 0; i < 51; i++) {
6 console.log(i);
7}
8
9//This can be rewritten as a while loop:
10
11let i = 0;
12
13while (i < 51) {
14 console.log(i);
15 i++;
16}