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

6 lines
91 B
JavaScript
Raw Normal View History

const helloWorld = function() {
2022-01-23 20:17:39 +00:00
return 'Hello, World!';
};
2017-08-17 18:47:39 +00:00
module.exports = helloWorld;