odin-javascript-exercises/helloWorld/helloWorld.js

5 lines
87 B
JavaScript

const helloWorld = function() {
return 'Yello Wold!'
}
module.exports = helloWorld;