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

6 lines
89 B
JavaScript

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