본문 바로가기

JS

[JS] 자바스크립트 조건문

조건문 (if, else)

조건의 결과(truthy, falsy)에 따라 다른 코드를 실행하는 구문

bloolean 값으로 ture를 isShow 라는 변수 이름에 할당한다. 

let isShow = true;
let checked = false;


// if 조건 구문
if (isShow){
  console.log('Show!!'); // Show!
};

if (checked){
  console.log('checked!');
};

코드 설명
콘솔창

 

else 조건을 추가하여 보자!

isShow조건이 참인 경우, if (isShow)가 참이니 'Show!'를 출력하게 되고, 아니면(else) 'hide!'는 출력되지 않는다. 

let isShow = true;	// 주목!

if (isShow) {
  console.log('Show!');
}else{
  console.log('hide!');
};

콘솔창

 

isShow조건이 거짓인 경우, if (isShow)가 참이기에 'Show!'를 출력하지 않고, 아니면(else) 'hide!'가 출력된다.

let isShow = false;	// 주목!

if (isShow) {
  console.log('Show!');
}else{
  console.log('hide!');
};

콘솔창

반응형