mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 00:01:37 +08:00
11
Maths/Pow.js
Normal file
11
Maths/Pow.js
Normal file
@ -0,0 +1,11 @@
|
||||
// Returns the value of x to the power of y
|
||||
|
||||
const pow = (x, y) => {
|
||||
let result = 1
|
||||
for (let i = 1; i <= y; i++) {
|
||||
result *= x
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
export { pow }
|
Reference in New Issue
Block a user