odin-javascript-exercises/helloWorld/helloWorld.js
2021-05-09 00:39:21 +12:00

5 lines
74 B
JavaScript

var helloWorld = function() {
return ''
}
module.exports = helloWorld;