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

6 lines
87 B
JavaScript

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