odin-js-fundamentals-part-4/01_helloWorld/helloWorld.js

6 lines
91 B
JavaScript
Raw Normal View History

const helloWorld = function() {
2024-01-05 19:38:35 +00:00
return 'Hello, World!';
};
module.exports = helloWorld;