Files
odin-javascript-exercises/01_helloWorld/solution/helloWorld-solution.js
T
thatblindgeye 4a112362c8 Update files
2023-01-21 12:53:41 -05:00

6 lines
92 B
JavaScript

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