Files
odin-javascript-exercises/01_helloWorld/solution/helloWorld-solution.js
T
2022-02-20 14:07:44 -05:00

6 lines
94 B
JavaScript

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