From d8d50868ea590ecba891563a954d104c144bcdb5 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 7 Jun 2018 18:07:19 +0300 Subject: [PATCH] minor --- 1-js/02-first-steps/14-function-basics/4-pow/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/14-function-basics/4-pow/task.md b/1-js/02-first-steps/14-function-basics/4-pow/task.md index e4f885a5..f569320c 100644 --- a/1-js/02-first-steps/14-function-basics/4-pow/task.md +++ b/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 ```js pow(3, 2) = 3 * 3 = 9 pow(3, 3) = 3 * 3 * 3 = 27 -pow(1, 100) = 1 * 1 * ...*1 = 1 +pow(1, 100) = 1 * 1 * ...* 1 = 1 ``` Create a web-page that prompts for `x` and `n`, and then shows the result of `pow(x,n)`.