if判断 和&&时间:2021-04-19 18:39:23function aaa(){ console.log('我是aaa'); }; aaa && aaa(); //如果aaa函数存在 就调用 aaa() //等价写法 if(aaa){ aaa(); }