Let's have add.js:
let add = function (a, b) { return a+b; }; const a = 5, b = 20; console.log("Addition: "+ add(a, b));
node add,js