We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c03478 commit 4b5ba30Copy full SHA for 4b5ba30
1-js/05-data-types/05-array-methods/6-calculator-extendable/task.md
@@ -22,8 +22,6 @@ A atividade consiste de duas partes.
22
Por exemplo, vamos adicionar multiplicação `*`, divisão `/` e potenciação `**`:
23
24
```js
25
- let multCalc = new Calculator;
26
- let divCalc = new Calculator;
27
let powerCalc = new Calculator;
28
powerCalc.addMethod("*", (a, b) => a * b);
29
powerCalc.addMethod("/", (a, b) => a / b);
0 commit comments