const shouldDrive = hasDriversLicense && hasGoodVision && isTired;
if(hasDriversLicense && hasGoodVision && !isTired) {
console.log(`Sarah is able to drive!`);
} else {
console.log(`Someone else should drive...`);
}
Wat komt hier uit? (Verander C naar false)