From ffb9ce2dfc9048728e89f08c1d1c1190b438327e Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Fri, 22 Mar 2019 23:08:38 +0300 Subject: [PATCH] up --- 1-js/02-first-steps/07-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/07-operators/article.md b/1-js/02-first-steps/07-operators/article.md index 4f2b70a8..74b27e87 100644 --- a/1-js/02-first-steps/07-operators/article.md +++ b/1-js/02-first-steps/07-operators/article.md @@ -232,7 +232,7 @@ alert( 2 ** 3 ); // 8 (2 * 2 * 2) alert( 2 ** 4 ); // 16 (2 * 2 * 2 * 2) ``` -The operator works for non-integer numbers of `a` and `b` as well. +The operator works for non-integer numbers as well. For instance: