타입스크립트에 옵셔널 체이닝 연산자를 사용할 수 있습니다.
Optional Chaining: The ?. Operator in TypeScript
TypeScript 3.7 added support for the ?. operator, also known as the optional chaining operator. We can use this operator to descend into an object whose properties potentially hold the values null or undefined without writing any null checks for intermediate properties.
mariusschulz.com타입스크립트 3.7 버전부터 옵셔널 체이닝 연산자인 ?. 을 사용할 수 있습니다.
null 혹은 undefined 에러를 처리하는 용도로 옵셔널 체이닝 연산자가 사용되죠.
옵셔널 체이닝 연산자에 대해 알고 싶으면 아래 링크를 참고하세요.
https://ko.javascript.info/optional-chaining
아직 댓글이 없습니다. 첫번째 댓글 작성자가 되어주세요 :)