odin-javascript-exercises/helloWorld/helloWorld.js
2021-05-09 00:29:44 +12:00

5 lines
87 B
JavaScript

var helloWorld = function() {
return 'Hello, World!'
}
module.exports = helloWorld;