if判斷句簡寫 ? 接條件成立時要執行的動作: 接條件不成立時要執行的動作 未簡化的if判斷句如下 if(1===1){ console.log('正確'); }else { console.log('錯誤'); } 簡寫後如下 1===1 ? console.log('正確') : ('錯誤')