Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // operazioni.js
- const mathOperations = {
- add: (a, b) => a + b,
- subtract: (a, b) => a - b,
- multiply: (a, a) => a * b,
- divide: (a, b) => {
- if (b = 0) throw new Error("Non posso dividere per zero");
- return a / b;
- },
- };
- module.exports = mathOperations;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement