개발/JavaScript
2023. 4. 8.
TypeError: Cannot read properties of undefined (reading '0')
배열의 인덱스를 접근할때 발생한 에러다. 에러 코드 function solution(arr){ let answer=0; let n=arr.length; let dx=[-1, 0, 1, 0]; let dy=[0, 1, 0, -1]; for(let i=0; i=0 && nx=0 && ny=arr[i][j])위의 조건을 추가한 완성 코드 function solution(arr){ let answer=0; let n=arr.length; let dx=[-1, 0, 1, 0]; let dy=[0, 1, 0, -1]; for(let i=0; i