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

33 lines
273 B
JavaScript
Raw Normal View History

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