Files
odin-javascript-exercises/helloWorld/helloWorld.js
T
2021-03-10 00:12:25 +13:00

6 lines
76 B
JavaScript

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