[Intermediate] 삼항 연산자

OROSY·2021년 3월 23일
0

JavaScript

목록 보기
13/53
post-thumbnail

1. 삼항 연산자(Ternary Operator)

형식

  • condition ? exprIfTrue : exprIfFalse
  • 조건 ? true일 때 : false일 때
    const a = 1 < 2
    // 값: true
    
    if (a) {
    console.log('참')
    } else {
    console.log('거짓')
    }
    // 값: true (if가 실행되었음을 알 수 있음)
    
    console.log(a ? '참' : '거짓')
    // 값: true (위의 내용과 같음 - 삼항 연산자)
profile
Life is a matter of a direction not a speed.

0개의 댓글