-
삼항연산자study/Extream 2023. 1. 26. 12:09728x90
사망연산자...
처음 들었을때 진짜로 사망연산자라고 하는 줄만 알았다.
js에서 세개의 피연산자를 받은 연산자다
condition ? exprIfTrue : exprIfFalse
조건문 ? (참일때표현) : (거짓일때 표현)
if else의 대체재로 사용된다고 한다.
null 값을 처리해 주어야 한다.
else if 도배해 사용하는 것 처럼 연결해서 사용할 수 있다.
function example(…) { return condition1 ? value1 : condition2 ? value2 : condition3 ? value3 : value4; }
위와 아래는 같다.
function example(…) { if (condition1) { return value1; } else if (condition2) { return value2; } else if (condition3) { return value3; } else { return value4; } }
728x90'study > Extream' 카테고리의 다른 글
Vue <router-view/>에 빨간줄 해결 법 (0) 2023.01.28 Vue Lazy Load (지연 로딩) (0) 2023.01.28 React 콘솔로그 두번 찍히는 이유 (0) 2023.01.23 tsx파일 (0) 2023.01.21 또액트 또테이트 연습 01 카운터 (0) 2023.01.11