en.javascript.info/1-js/02-first-steps/14-function-basics/4-pow/solution.md
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

310 B

function pow(x, n) {
  let result = x;

  for (let i = 1; i < n; i++) {
    result *= x;
  }

  return result;
}

let x = prompt("x?", '');
let n = prompt("n?", '');

if (n <= 1) {
  alert(`Power ${n} is not supported,
    use an integer greater than 0`);
} else {
  alert( pow(x, n) );
}