let isShow = true; let checked = false; if (isShow) { // 만일 isShow 변수가 true 라면 console.log('Show!'); // Show! } if (checked) { console.log('Checked'); } if (isShow) { console.log('Show!'); } else { console.log('Hide?'); } // Show!