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

7 lines
91 B
JavaScript

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