Files
odin-javascript-exercises/01_helloWorld/solution/helloWorld-solution.js
T

6 lines
92 B
JavaScript
Raw Normal View History

2022-02-20 14:07:44 -05:00
const helloWorld = function () {
2023-01-21 12:53:41 -05:00
return "Hello, World!";
2022-02-20 14:07:44 -05:00
};
module.exports = helloWorld;