2021-04-17 00:00

리팩터링 3 - Refactoring 3

8. 기능 이동
8.1 함수 옮기기(Move Function)
// Before
class Account {
get overdraftCharge() {...}
}
// After
class AccountType {
get ...

댓글