📅  最后修改于: 2022-03-11 15:04:20.354000             🧑  作者: Mango
//(condition)&&(runThisIfTheConditionWasTrue)
// E.G.
5 * 5 === 25 && console.log("horray"); //horray
5 * 1 === 25 && console.log("horray"); //returns false