Skip to content

Commit 4b5ba30

Browse files
authored
Apply suggestion from @gabifs
1 parent 9c03478 commit 4b5ba30

File tree

1 file changed

+0
-2
lines changed
  • 1-js/05-data-types/05-array-methods/6-calculator-extendable

1 file changed

+0
-2
lines changed

1-js/05-data-types/05-array-methods/6-calculator-extendable/task.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ A atividade consiste de duas partes.
2222
Por exemplo, vamos adicionar multiplicação `*`, divisão `/` e potenciação `**`:
2323

2424
```js
25-
let multCalc = new Calculator;
26-
let divCalc = new Calculator;
2725
let powerCalc = new Calculator;
2826
powerCalc.addMethod("*", (a, b) => a * b);
2927
powerCalc.addMethod("/", (a, b) => a / b);

0 commit comments

Comments
 (0)