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.
1 parent 8d9bc60 commit ee731b6Copy full SHA for ee731b6
booleans-and-conditionals/exercises/part-1.js
@@ -1,5 +1,12 @@
1
// Declare and initialize the variables for exercise 1 here:
2
3
+ let engineIndicatorLight = "red blinking";
4
+ let spaceSuitsOn = true;
5
+ let shuttleCabinReady = true;
6
+ let crewStatus = spaceSuitsOn && shuttleCabinReady;
7
+ let computerStatusCode = 200;
8
+ let shuttleSpeed = 15000;
9
+
10
// BEFORE running the code, predict what will be printed to the console by the following statements:
11
12
if (engineIndicatorLight === "green") {
@@ -9,3 +16,4 @@ if (engineIndicatorLight === "green") {
16
} else {
17
console.log("engines are off");
18
}
19
+//"engines are off" will be printed to the console.
0 commit comments