mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-21 05:52:23 +02:00
Translate assignment.ko.md via GitLocalize
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# 코드 리팩터링 및 주석
|
# 코드 리팩터링 및 주석
|
||||||
|
|
||||||
## Instructions
|
## 설명
|
||||||
|
|
||||||
코드베이스가 커짐에 따라 코드를 자주 리팩터링하여 시간이 지남에 따라 가독성과 유지 관리가 가능하도록 유지하는 것이 중요합니다. 주석을 추가하고 `app.js` 를 리팩터링하여 코드 품질을 개선합니다.
|
코드베이스가 커짐에 따라 코드를 자주 리팩터링하여 시간이 지남에 따라 가독성과 유지 관리가 가능하도록 유지하는 것이 중요합니다. 주석을 추가하고 `app.js` 를 리팩터링하여 코드 품질을 개선합니다.
|
||||||
|
|
||||||
@@ -8,8 +8,8 @@
|
|||||||
- 유사한 코드를 분해합니다. 예를 들어 `createAccount()` 및 `getAccount()` 모두에서 사용되는 코드를 다시 그룹화하는 `sendRequest()` 함수를 만들 수 있습니다.
|
- 유사한 코드를 분해합니다. 예를 들어 `createAccount()` 및 `getAccount()` 모두에서 사용되는 코드를 다시 그룹화하는 `sendRequest()` 함수를 만들 수 있습니다.
|
||||||
- 읽기 쉽도록 코드 재구성 및 주석 추가
|
- 읽기 쉽도록 코드 재구성 및 주석 추가
|
||||||
|
|
||||||
## Rubric
|
## 평가 기준
|
||||||
|
|
||||||
Criteria | Exemplary | Adequate | Needs Improvement
|
기준 | 모범 답안 | 적당한 답안 | 개선이 필요한 답안
|
||||||
--- | --- | --- | ---
|
--- | --- | --- | ---
|
||||||
| Code is commented, well-organized in different sections and easy to read. Constants are extracted and a factorized `sendRequest()` function has been created. | Code is clean but can still be improved with more comments, constant extraction or factorization. | Code is messy, not commented, constants are not extracted and code is not factorized.
|
| Code is commented, well-organized in different sections and easy to read. Constants are extracted and a factorized `sendRequest()` function has been created. | Code is clean but can still be improved with more comments, constant extraction or factorization. | Code is messy, not commented, constants are not extracted and code is not factorized.
|
||||||
|
Reference in New Issue
Block a user