You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web-Dev-For-Beginners/7-bank-project/3-data/translations/assignment.ko.md

1.0 KiB

코드 리팩터링 및 주석

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.