(진행배경) 아래 코드와 같이 localStorage에서 데이터 파싱을 시도하자 위와 같은 cannot read properties of null(reading 'notes') 에러가 나타났다. 'notes' 값을 읽어오지 못하고 있는 것이다. // 파싱한 데이터를 화면에 그리기 function showNotes() { const showData = parseSavedData(); console.log('showData', showData); for (let i = 0; i < showData.notes.length; i++) { const note = showData.notes[i]; const solution = showData.solutions[i]; const select = showData.se..