리액트 강의듣기
개인프로젝트 마무리
└ validation
└ 삭제 시 확인창
└ progress bar
└ 모두 지우기 버튼
과제 제출
밍글데이
?.
.
(체이닝 연산자)와 비슷하게 작동하지만, 만약 참조가 nullish (null 또는 undefined)이라면, 에러가 발생하는 것 대신에 표현식의 리턴 값은 undefined이 됨const adventurer = {
name: 'Alice',
cat: {
name: 'Dinah',
},
};
const catName = adventurer.cat?.name;
console.log(catName); // Dinah
const dogName = adventurer.dog?.name;
console.log(dogName);
// Expected output: undefined
console.log(adventurer.someNonExistentMethod?.());
// Expected output: undefined
loading
속성을 주는 것<img src="./" alt="image" loading="lazy"/>
📍 https://velog.io/@jetiiin/todoList만들기-2
- 아침에 잠 깨느라 너무 힘들었다 ㅠ
내일은 리액트 숙련주차 시작이자 아침 발제 있는 날!
또 강의주간이란 소리네... 😇- 그래도 과제 마무리해서 후련하다