javascript

javascript_데이터타입(조건연산자)_22.04.21(day02)

양빵빵 2022. 4. 21. 14:15

 


// 조건 연산자 (삼항 연산자)

//1항(논리형 조건식) ? 참일 경우 실행할 코드 : 거짓일 경우 실행할 코드

var myFriend = "쿵쿵이";
myFriend === '짹짹이'?console.log('짹짹아 안녕~'): console.log('누구세요??');

// 시험 점수
var score = 78 ;
var result = score >= 60 ? '합격' : '불합격';
console.log(`시험결과:${result}`);