Exercise 9 · Chapter: VariablesOptional+50 XP
Fix the Booleans
This code was written by someone who just came from Python — and it crashes! Fix the boolean values so it runs.
Expected output:
Is raining: true Is sunny: false
Hint: JavaScript booleans are written in all lowercase.
Need a hint?
3 available · costs 5 XP each
javascript
let isRaining = True;
let isSunny = False;
console.log("Is raining:", isRaining);
console.log("Is sunny:", isSunny);
Output
Run your code to see the output here.