Skip to content

Commit c181a7c

Browse files
authored
Merge pull request #2 from SyedAlvi22/Variables
initialized the variables for exercise 1
2 parents 5e346a0 + 6458b67 commit c181a7c

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)