Conditional Rendering

최창서·2022년 3월 23일
0
post-custom-banner

Conditional rendering(조건부실행)

data가 거짓이면 뒤에가 실행 됨
data || data.fetchProfile

data가 참이면
data && data.fetchProfile

거짓 => 0,'',false,null,undefined,NaN
undefined = 비어있음
null = 인위적으로 비워놓음

optional-chaining

data && data 를 간편하게 data? 이것으로 한번에 처리 가능

nullish-coalescing

거짓중에서도 null 또는 undefined 일때만
data??data.fetchProfile

profile
프론트엔드 개발자

0개의 댓글