Skip to content

Commit 8bc6a37

Browse files
committed
after merge
1 parent 9d57cf3 commit 8bc6a37

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

loops/exercises/javascript-projects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit e9ee4794d192151f94bfc82e332ffce8adc798c3

loops/exercises/while-Loop-Exercises.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
//Define three variables for the LaunchCode shuttle - one for the starting fuel level, another for the number of astronauts aboard, and the third for the altitude the shuttle reaches.
22

33

4+
let phrase = "Chili Cook-off";
45

6+
for (let i = 0; i < phrase.length - 1; i = i + 3) {
7+
console.log(phrase[i]);
8+
}
59

610

711
/*Exercise #4: Construct while loops to do the following:

0 commit comments

Comments
 (0)