1. 조건문 if if ( condition ) { statement } let a = 10 ; if ( a > 10 ) { console.log("a는 10보다 크다."); } else if ( a = 10 ) { console.log("a는 10과 같다."); } else { console.log("a는 10보다 작다"); } 삼항 연산자 조건문 ? 조건문true일때실행문 : 조건문false일떄실행문 let a = 2; let b = a > 0 ? "크다" : "작다" ; console.log(b) ; // 크다 switch var foo = 0; switch (foo) { case -1: console.log('negative 1'); break; case 0: console.log(0); case..