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 0bc6e65 commit 913bed9Copy full SHA for 913bed9
index.js
@@ -18,10 +18,36 @@ function potencia(a, b) {
18
return Math.pow(a, b);
19
}
20
21
+function dobra(a) {
22
+ return a * 2;
23
+}
24
+
25
+function triplica(a) {
26
+ return a * 3;
27
28
29
+function adiciona100(a) {
30
+ return a + 100;
31
32
33
+function adiciona200(a) {
34
+ return a + 200;
35
36
37
+function adiciona300(a) {
38
+ return a + 300;
39
40
41
module.exports = {
42
soma,
43
multiplicacao,
44
subtracao,
45
potencia,
46
divisao,
47
+ adiciona100,
48
+ adiciona200,
49
+ adiciona300,
50
+ dobra,
51
+ potencia,
52
+ triplica,
53
};
0 commit comments