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(`Potęga z ${n} nie jest wspierana, użyj dodatniej liczby całkowitej`);
} else {
alert( pow(x, n) );
}