Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 295 Bytes

coat-problem.md

File metadata and controls

12 lines (9 loc) · 295 Bytes

Write a boolean expression to tell us if we need to take a coat. We take a coat if its raining or the temperature is less than 10 degrees.

let tempC = 15;
let isRaining = false;

// write your boolean expression on the line below
let shouldTakeCoat = ; 

console.log(shouldTakeCoat);