Files
excel-download/nodejs/math-tools.js
2020-12-03 03:58:23 +09:00

9 lines
175 B
JavaScript

let calculator = {
PI : 3.14,
add : (a, b) => a + b,
subtract : (a, b) => a - b,
multiply : (a, b) => a * b,
divide : (a, b) => a / b
}
module.exports = calculator;