odin-default-js-exercises/helloWorld/helloWorld.js

6 lines
85 B
JavaScript

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