const isUnderage = true; const isDrunk = false; if (isUnderage || isDrunk) { console.log("Cannot drive"); }
Cannot drive