71일차: 버그 수정!

4506 단어
오늘은 흥미로운 날이었다. 나는 11시간째에 더 쉬운 "버그가 없는"방법을 찾기 위해 버그를 수정하는 데 4시간을 보냈습니다. 나는 여전히 이전 구현에 대해 어리석은 생각을 할 것인지 아니면 마침내 고친 것에 대해 기뻐할 것인지 결정할 수 있습니다. 다음은 삭제해야 하는 내용입니다. my previous shitty code 😂

현재 구현:

function displayWeeksForecast(data) {
    const nextDayDegree = [document.querySelectorAll('#nextDaydegree')]
    const nextDayIcon = [document.querySelectorAll('#nextWeatherIcon')]
    const nextforeCast = [document.querySelectorAll('#nextforeCast')]

    let weeksTemp = nextDayDegree[0]
    let weeksIcon = nextDayIcon[0]
    let weeksForecast = nextforeCast[0]

    for(i=0; i<7; i++) {
    weeksTemp[i].innerText = `${Math.round(data[i].temp.day - 273.15)}°`;
    weeksIcon[i].setAttribute('src', `https://openweathermap.org/img/wn/${data[i].weather[0].icon}.png`) 
    weeksForecast[i].innerText = data[i].weather[0].main
    }
}


😂 앞의 코드를 똑바로 쳐다보기도 힘들어요. 나는 "누가-그걸 쓴-"순간을 보내고 있습니다.

🥂작은 승리를 위해
그게 71일째야
내일 또 해보자

좋은 웹페이지 즐겨찾기