diff --git a/index.js b/index.js index 80bb5fe..562f82d 100644 --- a/index.js +++ b/index.js @@ -12,8 +12,15 @@ function divide(a, b) { return a / b; } +function power(a, b) { + return Math.pow(a, b) +} + + + module.exports = { add, subtract, - divide -}; \ No newline at end of file + divide, + power +} \ No newline at end of file