-
Notifications
You must be signed in to change notification settings - Fork 24
7강 과제 제출 류승민 #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
7강 과제 제출 류승민 #8
Conversation
seunghui-park
left a comment
There was a problem hiding this 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> |
There was a problem hiding this comment.
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> |
There was a problem hiding this comment.
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; 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; | ||
| }; |
There was a problem hiding this comment.
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],
});
}
}
반복문 조건에 추가하면 어떨까요?
No description provided.