Complex Conditional Statements Example
const temp = 40;
if (temp >= 90) {
console.log("Phew! It's hot enough to fry an egg on the sidewalk!");
} else if (temp >= 65 && temp < 90) {
console.log("Ah, it's warm and toasty like a freshly baked croissant!");
} else if (temp >= 50 && temp < 65) {
console.log("It's a nice day! Perfect weather for a picnic or outdoor concert.");
} else {
console.log("Brr, a bit chilly today! Just another typical Spring in Boston!");
}