Uncaught TypeError: Cannot read properties of undefined (reading 'name')

1 개요[ | ]

Uncaught TypeError: Cannot read properties of undefined (reading 'name')
const person = undefined;
console.log(person.name);
const person = undefined;
console.log(person[1]);
const person = undefined;
console.log(person?.name);

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}