가자미의 개발이야기

[JS] 삼항연산자 본문

HTML & CSS & JS/JS

[JS] 삼항연산자

가자미 2021. 3. 17. 17:04

변수 = (조건) ? (조건이 참일 경우 변수에 할당) : (조건이 거짓일 경우 변수에 할당)

//삼항연산자
const array=[];
let text=array.length===0
    ?'empty'
    :'not empty';

//복합 삼항연산자(비추, 차라리 조건문)
const condition1 = false;
const condition2 = false;
const value = condition1
    ? 'wow'
    : condition2
        ? 'blabla'
        : 'foo';

'HTML & CSS & JS > JS' 카테고리의 다른 글

[JS] 비구조할당  (0) 2021.03.17
[JS] falthy , truthy  (0) 2021.03.17
[JS] class와 constructor, 상속  (0) 2021.03.17
[JS] 개체 생성자와 상속  (0) 2021.03.17
[JS] 프로토타입  (0) 2021.03.17