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

8 lines
121 B
JavaScript

// HELLO WORLD ALGO FINISHED!
const helloWorld = function() {
return 'Hello, World!'
};
module.exports = helloWorld;