From 5f0bcce3b7c5db5472dd1a085c9bec66a4a11c9d Mon Sep 17 00:00:00 2001 From: HanaKim Date: Sun, 10 Jan 2021 06:21:57 +0000 Subject: [PATCH] Translate assignment.ko.md via GitLocalize --- .../3-data/translations/assignment.ko.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 7-bank-project/3-data/translations/assignment.ko.md diff --git a/7-bank-project/3-data/translations/assignment.ko.md b/7-bank-project/3-data/translations/assignment.ko.md new file mode 100644 index 00000000..13d495cd --- /dev/null +++ b/7-bank-project/3-data/translations/assignment.ko.md @@ -0,0 +1,15 @@ +# 코드 리팩터링 및 주석 + +## Instructions + +코드베이스가 커짐에 따라 코드를 자주 리팩터링하여 시간이 지남에 따라 가독성과 유지 관리가 가능하도록 유지하는 것이 중요합니다. 주석을 추가하고 `app.js` 를 리팩터링하여 코드 품질을 개선합니다. + +- 서버 API 기본 URL과 같은 상수 추출 +- 유사한 코드를 분해합니다. 예를 들어 `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.