Exporting and importing module in node.js:
*
Exporting with ES6 syntax
This is the equivalent of the other example but using ES6 instead.
export function printHelloWorld() {
console.log("Hello World!!!");
}