Skip to content

Commit 91d675f

Browse files
committed
Worked on Debugging Runtime Errors 1 exercises
1 parent 34b1851 commit 91d675f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

errors-and-debugging/exercises/DebuggingRuntimeErrors1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
let launchReady = false;
55
let fuelLevel = 17000;
66

7-
if (fuellevel >= 20000) {
7+
if (fuelLevel >= 20000) {
88
console.log('Fuel level cleared.');
99
launchReady = true;
1010
} else {

0 commit comments

Comments
 (0)