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

6 lines
90 B
JavaScript
Raw Normal View History

const helloWorld = function() {
2023-11-04 11:05:11 +00:00
return 'Hello, World!'
};
2017-08-17 18:47:39 +00:00
module.exports = helloWorld;