odin-default-js-exercises/01_helloWorld/solution/helloWorld-solution.js

6 lines
92 B
JavaScript
Raw Normal View History

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