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 d4447e3 commit d8d5086Copy full SHA for d8d5086
1-js/02-first-steps/14-function-basics/4-pow/task.md
@@ -9,7 +9,7 @@ Write a function `pow(x,n)` that returns `x` in power `n`. Or, in other words, m
9
```js
10
pow(3, 2) = 3 * 3 = 9
11
pow(3, 3) = 3 * 3 * 3 = 27
12
-pow(1, 100) = 1 * 1 * ...*1 = 1
+pow(1, 100) = 1 * 1 * ...* 1 = 1
13
```
14
15
Create a web-page that prompts for `x` and `n`, and then shows the result of `pow(x,n)`.
0 commit comments