Correct formatting

This commit is contained in:
rzaaeeff 2017-06-26 16:13:21 +04:00 committed by GitHub
parent 2a0516d174
commit 8dfe1644d8

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;
} }
``` ```