module.exports = {
sum: function(a, b) {
return a + b
},
multiply: function(a, b) {
return a * b
}
}
Here sum and multiply are two functions.
module.exports = {
sum: function(a, b) {
return a + b
},
multiply: function(a, b) {
return a * b
}
}
Here sum and multiply are two functions.