function foo(x, y) { return x + y; } function bar(x, y) { return x - y; } //You can also export numbers, classes, objects, etc const foobar = 33; module.exports = { foo, bar, num };