Merge pull request #63 from rzaaeeff/patch-2

Correct formatting
This commit is contained in:
Ilya Kantor 2017-06-30 13:54:51 +03:00 committed by GitHub
commit 2bfdde2b7d

View file

@ -361,9 +361,11 @@ function pow(x, n) {
*/!* */!*
let result = 1; let result = 1;
for (let i = 0; i < n; i++) { for (let i = 0; i < n; i++) {
result *= x; result *= x;
} }
return result; return result;
} }
``` ```