🩵 React/학습 노트14 [React🩵] ||(or연산자) ??(Nullish Coalescing 연산자)의 차이점 01. || (OR 연산자) vs ?? (Nullish Coalescing 연산자)의 차이점공통점: 둘다 기본값을 설정하는데 사용된다차이점: * ||(OR 연산자): Falsy**값이면 오른쪽 값을 사용한다* ??(Nulllish Coalescing 연산자): null 또는 underfined일 때만 오른쪽 값 사용**Falsy값: false, 0, "", null, undefined, NaN 02. 활용 예시const displayPreferences = (preference) => { const textLength = preference.textLength || 50; // `||` 사용 console.log("1 => ", textLength); const itemsPe.. 2025. 2. 26. [React🩵] 구조 분해 할당(Destructuring) 01. 객체 Destructuring1-1. 다중 속성 추출아래의 코드를 살펴보면 item 객체 내부에 두 가지 요소 name, price가 있다const item = { name: "커피", price: 4000}; 구조 분해 할당을 실행하게 되면 → { name, price } = itemname과 price 이라는 새로운 변수가 생성된다name = item.nameprice = item.priceconst item = { name: "커피", price: 4000};// 구조 분해 할당 실행const { name, price } = item;console.log(name); // "커피"console.log(price); // 4000 이 때 새로 생성된 변수명은 it.. 2025. 2. 25. 이전 1 2 3 다음