meetthakkar
Version:
module created by meet for testing
23 lines (18 loc) • 379 B
JavaScript
function add (a, b) {
console.log('Adding numbers:' + (a+b));
}
function subtract (a, b) {
console.log('Subtracting numbers:' + (a-b));
}
function currentDate() {
console.log("Current Date by h:" + Date());
}
function multiply(a, b) {
console.log('Multiplying numbers:' + (a * b));
}
module.exports = {
add,
subtract,
currentDate,
multiply
};