odin-default-js-exercises/calculator/calculator.js

21 lines
214 B
JavaScript
Raw Normal View History

function add() {}
function subtract() {}
2017-09-20 23:04:46 +00:00
function sum() {}
function multiply() {}
2017-09-20 23:04:46 +00:00
function power() {}
function factorial() {}
2017-09-20 23:04:46 +00:00
module.exports = {
2017-12-15 18:56:14 +00:00
add,
subtract,
sum,
multiply,
power,
factorial,
2017-12-15 18:56:14 +00:00
};