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

6 lines
88 B
JavaScript

const helloWorld = function() {
return 'hello world'
};
module.exports = helloWorld;