Skip to content

Commit 36d0dc0

Browse files
[문서] 3-events-change-input/1-deposit-calculator 번역 충돌 해결
1 parent 71ab899 commit 36d0dc0

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

  • 2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator

2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator/task.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,8 @@ importance: 5
1414

1515
공식은 아래와 같습니다.
1616
```js
17-
<<<<<<< HEAD
1817
// initial: 계산 전의 잔고
1918
// interest: 이자율. 0.05는 연 5%의 이자율을 의미합니다.
2019
// years: 예금 유치 기간으로, 연 단위
21-
let result = Math.round(initial * (1 + interest * years));
22-
=======
23-
// initial: the initial money sum
24-
// interest: e.g. 0.05 means 5% per year
25-
// years: how many years to wait
2620
let result = Math.round(initial * (1 + interest) ** years);
27-
>>>>>>> upstream/master
2821
```

0 commit comments

Comments
 (0)