odin-default-js-exercises/01_helloWorld/solution/helloWorld-solution.js

6 lines
94 B
JavaScript

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