(number)
| 16 | } |
| 17 | |
| 18 | appendNumber(number){ |
| 19 | if(number === '.' && this.currentOperant.includes('.')) |
| 20 | return; |
| 21 | this.currentOperant = this.currentOperant.toString() + number.toString(); |
| 22 | } |
| 23 | |
| 24 | chooseOperation(operation){ |
| 25 | if(this.operation === '') |