Files
odin-javascript-exercises/helloWorld/helloWorld.js
T

6 lines
75 B
JavaScript
Raw Normal View History

2021-05-08 11:25:04 -07:00
const helloWorld = function() {
return ''
2017-08-17 13:47:39 -05:00
}
2021-05-08 11:27:13 -07:00
module.exports = helloWorld