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 c08f987 commit 2a20f17Copy full SHA for 2a20f17
1-js/02-first-steps/14-function-basics/4-pow/solution.md
@@ -14,8 +14,8 @@ let x = prompt("x?", '');
14
let n = prompt("n?", '');
15
16
if (n < 1) {
17
- alert(`Power ${n} is not supported,
18
- use an integer greater than 0`);
+ alert(`Expoente ${n} não é suportado,
+ use um inteiro maior que 0`);
19
} else {
20
alert( pow(x, n) );
21
}
0 commit comments