Skip to content

Commit 6458b67

Browse files
authored
initialized the variables for exercise 1
1 parent 5e346a0 commit 6458b67

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

booleans-and-conditionals/exercises/part-1.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
// Declare and initialize the variables for exercise 1 here:
2+
let engineIndicatorLight = "red blinking";
3+
let spaceSuitsOn = true;
4+
let shuttleCabinReady = true;
5+
let crewStatus = spaceSuitsOn && shuttleCabinReady;
6+
let computerStatusCode = 200;
7+
let shuttleSpeed = 15000;
8+
29

310
// BEFORE running the code, predict what will be printed to the console by the following statements:
411

0 commit comments

Comments
 (0)