Practice combining logical operators:
let age = 25
let hasLicense = true
let hasInsurance = false
let canDrive = age >= 18 && hasLicense
let isLegal = canDrive && hasInsurance
let needsAction = canDrive && !hasInsurance
console.log("Can drive:", canDrive)
console.log("Fully legal:", isLegal)
console.log("Needs insurance:", needsAction)
Change the values and observe how the results change.