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

6 lines
92 B
JavaScript

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