odin-javascript-exercises/01_helloWorld/solution/helloWorld-solution.js
2023-01-21 12:53:41 -05:00

5 lines
92 B
JavaScript

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