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

5 lines
76 B
JavaScript

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