odin-js-fundamentals-part-4/01_helloWorld/helloWorld.js

6 lines
91 B
JavaScript

const helloWorld = function() {
return 'Hello, World!';
};
module.exports = helloWorld;