Skip to content

Conversation

@3yuseungmin
Copy link

No description provided.

Copy link
Member

@seunghui-park seunghui-park left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

과제하느라 고생 많으셨습니다 :)
8주차 부터 진행하는 팀플 파이팅 하십셔 👍


return (
<CurrentWeatherWrapper>
<Temperature>{currentTemp}°C</Temperature>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

온도 소수점까지 반환하던데 날씨 앱에서 보통 소수점까진 출력 안하니 반올림해도 괜찮을 것 같습미당

<DailyItem key={index}>
<div>{day.date}</div>
<div>{getWeatherDescription(day.code)}</div>
<div>{day.temp}°C</div>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

여기도!

Comment on lines +33 to 46
for (let i = 0; i < times.length; i++) {
const hour = new Date(times[i]).getHours();
if (hour >= currentHour && result.length < 12) {
result.push({
time: `${hour}시`,
temp: temps[i],
code: codes[i],
});
}
if (result.length >= 12) break;
}

return result;
};
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for (let i = 0; i < times.length && result.length < 12; i++) {
  const hour = new Date(times[i]).getHours();
  if (hour >= currentHour) {
    result.push({
      time: `${hour}시`,
      temp: temps[i],
      code: codes[i],
    });
  }
}

반복문 조건에 추가하면 어떨까요?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants