We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e346a0 + 6458b67 commit c181a7cCopy full SHA for c181a7c
booleans-and-conditionals/exercises/part-1.js
@@ -1,4 +1,11 @@
1
// 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
+
9
10
// BEFORE running the code, predict what will be printed to the console by the following statements:
11
0 commit comments