728x90
중첩 배열의 인덱스에 액세스하려고 할 때 오류가 발생했다.
oprional chaining을 사용해서 오류해결 했다.
const arr = [];
console.log(arr?.[0]?.[0]); // ✅ undefined
const arr = [['hello']];
console.log(arr?.[0]?.[0]); // ✅ "hello"
[출처]
728x90
'JavaScript' 카테고리의 다른 글
전개 구문(Spread syntax; ...) (0) | 2023.11.26 |
---|---|
2차원 배열의 중복값 제거 (0) | 2023.11.26 |
reduce() 함수 (0) | 2023.10.26 |
map() 함수 (1) | 2023.10.26 |
filter() 함수 (0) | 2023.10.26 |