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

6 lines
94 B
JavaScript
Raw Normal View History

2022-02-20 14:07:44 -05:00
const helloWorld = function () {
return 'Hello, World!';
};
module.exports = helloWorld;