- not运算符(!) 反着来
- and运算符(&&) 全true才true
- or运算符(||) 全false才false
举例
const hasDriversLicense = true;
const Drinking = false;console.log(hasDriversLicense && Drinking);
console.log(hasDriversLicense || Drinking);
console.log(!hasDriversLicense);
举例:如果一个人有驾驶证的情况下,并且没有喝酒,并且不疲劳的情况下才能开车!
例如现在小明已经有驾驶证了,没有喝酒,没有疲劳,写一个程序判断它能不能开车!
const xmHasDrives = true;
const xmNoDrink = true;
const xmNoTired = true;
if (xmHasDrives && xmNoDrink && xmNoTired) {console.log("小明现在可以开车");
} else {console.log("现在禁止小明开车!");
}