manipulate-monopoly
Version:
This is a js module to manipulate game Monopoly.
21 lines (16 loc) • 340 B
JavaScript
const echo = (name) => {
return `This is a Hello ${name}`;
};
const multiply = (a, b) => {
return `${a * b}, ${a}, ${b}, ${a}*${b}`;
};
const divide = (a, b) => {
return a / b;
};
// module.exports = {
// echo,
// multiply,
// };
module.exports.echo = echo;
module.exports.multiply = multiply;
module.exports.divide = divide;